-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 KB
/
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": "store-it",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"tslint": "tslint --project tsconfig.json",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"*/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"*/**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:write"
}
},
"dependencies": {
"classnames": "^2.2.6",
"next": "10.0.7",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"recoil": "^0.1.2",
"tailwindcss": "^2.0.3"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"husky": "^5.0.9",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5"
}
}