-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "react-next-example",
"version": "0.1.0",
"description": "A reactjs next example",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "next",
"build": "next build",
"start": "next start",
"precommit": "lint-staged"
},
"author": "Jeronimo Carrizo <[email protected]> (https://twitter.com/jero786)",
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"next": "^7.0.0",
"node-sass": "^4.9.3",
"react": "^16.5.2",
"react-dom": "^16.5.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",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"enzyme": "3.2.0",
"enzyme-adapter-react-16": "1.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"jest": "22.0.1",
"lint-staged": "^7.2.2",
"prettier-eslint": "^8.8.2",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.2.0",
"sinon": "^6.1.5"
}
}