-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 967 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "fyzu-landing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write 'src/**/*.{json,{j,t}s{,x},css,s{c,a}ss}'"
},
"dependencies": {
"next": "10.0.4",
"normalize.css": "^8.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intersection-observer": "^8.31.0",
"react-is": "^17.0.1",
"react-slick": "^0.27.13",
"styled-components": "^5.2.1",
"twitch": "^4.3.8",
"twitch-auth": "^4.3.8"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-slick": "^0.23.4",
"@types/styled-components": "^5.1.7",
"babel-plugin-styled-components": "^1.12.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}