-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.77 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.77 KB
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
57
{
"name": "practice-app",
"version": "1.0.0",
"description": "shows records in a meaningful way using react and d3.js - client side",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint --ext .jsx, src; exit 0",
"chimp-watch": "./node_modules/.bin/chimp --watch",
"server": "node server",
"webpack": "./node_modules/webpack/bin/webpack.js",
"dev-server": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors"
},
"author": "Stephanie Baum",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"bootstrap": "^4.0.0-alpha.5",
"cheerio": "^0.22.0",
"chimp": "^0.41.2",
"css-loader": "^0.25.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-promise": "^3.4.0-0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"jsdom": "^9.8.3",
"node-sass": "^3.13.1",
"path": "^0.12.7",
"react-addons-test-utils": "^15.3.2",
"sanitize-filename": "^1.6.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"bootstrap": "^4.0.0-alpha.6",
"d3": "^4.3.0",
"d3-interpolate": "^1.1.3",
"d3-scale-chromatic": "^1.1.0",
"express": "^4.15.0",
"jquery": "^3.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"tether": "^1.4.0"
}
}