-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "react-calculator",
"version": "0.1.0",
"homepage": "http://krzywiecki.github.io/react-calculator",
"private": true,
"dependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"node-sass-chokidar": "^1.1.2",
"prettier": "^1.11.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1"
},
"lint-staged": {
"src/**/*.js": [
"eslint src --ext .js,.jsx --fix",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"eslint": "eslint src",
"eslint-fix": "eslint src --ext .js,.jsx --fix",
"prettier": "prettier src/**/*.{js,jsx,json,css} --single-quote --write",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"babel-core": "^6.26.0",
"eslint": "^4.19.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0"
}
}