forked from dictyBase/dicty-frontpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "dicty-frontpage",
"version": "0.1.0",
"private": true,
"dependencies": {
"dicty-components-header-footer": "github:dictyBase/dicty-components-header-footer",
"dicty-components-navbar": "github:dictyBase/dicty-components-navbar",
"flow-bin": "^0.49.1",
"grid-styled": "^2.0.0-7",
"husky": "^0.14.3",
"lint-staged": "^4.0.1",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.6.1",
"react-icons": "^2.2.5",
"react-styleguidist": "^5.5.4",
"react-test-renderer": "^15.6.1",
"styled-components": "^2.1.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"enzyme": "^2.9.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"prettier": "^1.5.2",
"react-addons-test-utils": "^15.5.1",
"react-scripts": "1.0.8"
},
"scripts": {
"prettier": "prettier --version",
"precommit": "lint-staged",
"flow": "flow",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}