-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.55 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
57
58
59
60
{
"name": "react-next-hooks-usereducer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@babel/core": "^7.2.2",
"@zeit/next-sass": "^1.0.1",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-import": "^0.13.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"express": "^4.16.4",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.11",
"next": "^7.0.1",
"node-sass": "^4.11.0",
"prop-types": "^15.6.2",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"sinon": "^7.2.2"
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix .",
"git add",
"jest --bail --findRelatedTests"
]
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "22.4.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^7.0.0-beta",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.12.0",
"eslint-plugin-react-hooks": "0.0.0",
"husky": "^1.3.1",
"jest": "22.0.1",
"prettier-eslint": "^8.8.2"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"author": "",
"license": "ISC"
}