-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "next-standard-jester",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "yarn clean && next build",
"clean": "rimraf ./.next ./dist ./src/.next ./src/dist",
"dev": "next dev -p 2020",
"precommit": "standard --fix | snazzy",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"test:standard": "standard | snazzy",
"test:standard-fix": "standard --fix | snazzy"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"dependencies": {
"next": "9.5.3",
"next-redux-wrapper": "6.0.2",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.1",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"redux-thunk": "2.3.0",
"styled-components": "5.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.4",
"babel-eslint": "10.1.0",
"babel-jest": "26.3.0",
"babel-plugin-styled-components": "1.11.1",
"babel-plugin-transform-remove-console": "6.9.4",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"enzyme-to-json": "3.6.1",
"eslint": "7.10.0",
"eslint-plugin-react": "7.21.2",
"husky": "^4.3.0",
"jest": "26.4.2",
"jest-styled-components": "7.0.3",
"prettier-eslint": "11.0.0",
"rimraf": "^3.0.2",
"snazzy": "8.0.0",
"standard": "14.3.4"
},
"standard": {
"parser": "babel-eslint"
}
}