-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "techmap",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/honeypotio/techmap/"
},
"config": {
"distPath": "build"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"deploy": "gh-pages --dist $npm_package_config_distPath",
"format": "prettier --single-quote --write '{src,public}/**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"csvtojson": "^1.1.5",
"enzyme": "^2.8.2",
"gh-pages": "^0.12.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.1",
"prettier": "^1.3.1",
"react-scripts": "0.9.5",
"react-test-renderer": "^15.5.4"
},
"dependencies": {
"lodash.groupby": "^4.6.0",
"lodash.kebabcase": "^4.1.1",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-helmet": "^5.0.3",
"react-router": "^3.0.5",
"styled-components": "^1.4.6"
}
}