-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
56 lines (56 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
{
"name": "rd3",
"version": "0.4.2",
"private": true,
"license": "MIT",
"author": "Thibaut Tiberghien <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tibotiber/rd3.git"
},
"engines": {
"node": ">=6.9.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"d3": "^4.9.1",
"d3-scale-chromatic": "^1.1.1",
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"lorem-ipsum": "^1.0.4",
"polished": "^1.1.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.4.2",
"react-faux-dom": "^4.0.3",
"react-grid-layout": "^0.14.6",
"react-measure": "^1.4.7",
"react-redux": "^5.0.3",
"react-scripts": "0.9.5",
"recompose": "^0.23.1",
"redux": "^3.6.0",
"redux-immutable": "^4.0.0",
"reselect": "^3.0.0",
"serve": "^5.1.4",
"styled-components": "^2.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"prettier-eslint-cli": "^4.1.1"
},
"scripts": {
"start": "serve -s build",
"dev": "NODE_PATH=./src react-scripts start",
"build": "NODE_PATH=./src react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint-check": "prettier-eslint --list-different \"src/**/*.js\"",
"lint": "prettier-eslint --write \"src/**/*.js\""
}
}