-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.75 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.75 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "next-redux-typescript-starter",
"version": "1.0.0",
"main": "index.js",
"author": "Yoshitaka Terazawa",
"license": "MIT",
"scripts": {
"clean": "rimraf .next",
"dev": "next",
"build": "tsc -p . && next build",
"performance": "autocannon -c 100 http://localhost:3000",
"deploy": "now --prod -t $NOW_TOKEN",
"test": "jest --coverage"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.9",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.2",
"next-redux-wrapper": "^5.0.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-redux": "^7.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7"
},
"devDependencies": {
"@storybook/react": "5.3.18",
"@types/jest": "25.2.1",
"@types/next": "8.0.7",
"@types/next-redux-wrapper": "2.0.2",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.7",
"@types/react-redux": "7.1.8",
"@types/redux": "3.6.0",
"@types/storybook__react": "4.0.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"autocannon": "4.6.0",
"babel-plugin-emotion": "10.0.33",
"cpx": "1.5.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-everywhere": "0.5.2",
"husky": "4.2.5",
"jest": "25.5.4",
"lint-staged": "10.2.2",
"npm-run-all": "4.1.5",
"prettier": "2.0.5",
"rimraf": "2.7.1",
"ts-jest": "25.5.1",
"typescript": "3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}