-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
78 lines (78 loc) · 2.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "velocity-dashboard",
"version": "2.0.3",
"license": "BSD-3-Clause",
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev": "cross-env NODE_ENV=development node ./bin/www",
"clean": "rimraf public/styles/style.css public/scripts/bundle.js public/scripts/bundle.js.map",
"lessc": "cross-env lessc ./public/styles/style.less ./public/styles/style.css && cross-env lessc ./public/styles/dashboard.less ./public/styles/dashboard.css",
"package": "cross-env NODE_ENV=production npm run lessc && webpack && cp ./node_modules/font-awesome/fonts/* ./docs/fonts/ && cp ./node_modules/weather-icons/font/* ./docs/fonts/ && cp public/styles/*.css docs && cp public/styles/dashboard.css dist && cp public/styles/*.png docs && cp ./dist/example.js docs",
"test": "mocha test",
"test:dev": "mocha --watch test",
"test:nyan": "mocha --watch --reporter nyan test"
},
"description": "",
"repository": {
"type": "git",
"url": "[email protected]:MonsantoCo/velocity-dashboard.git"
},
"main": "./dist/main",
"dependencies": {
"compression": "~1.7.2",
"express": "~4.16.3",
"jade": "~1.11.0",
"lodash": "~4.17.10",
"react": "~16.4.0",
"react-dnd": "~4.0.4",
"react-dnd-html5-backend": "~4.0.4",
"react-dom": "~16.4.0",
"react-transition-group": "~1.2.1"
},
"peerDependencies": {
"react": "16.x",
"react-transition-group": "1.2.x",
"react-dom": "16.x"
},
"devDependencies": {
"@babel/core": "~7.0.0-beta.49",
"@babel/plugin-proposal-object-rest-spread": "~7.0.0-beta.49",
"@babel/polyfill": "~7.0.0-beta.49",
"@babel/preset-env": "~7.0.0-beta.49",
"@babel/preset-react": "~7.0.0-beta.49",
"@babel/register": "~7.0.0-beta.49",
"babel-loader": "~8.0.0-beta.3",
"babel-plugin-autobind-class-methods": "~5.0.1",
"babel-plugin-transform-class-properties": "~6.24.1",
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"cross-env": "~1.0.8",
"enzyme": "~3.3.0",
"enzyme-adapter-react-16": "~1.1.1",
"enzyme-react-adapter-future": "~1.1.3",
"es6-promise": "~4.2.4",
"font-awesome": "~4.6.3",
"jsdom": "~8.5.0",
"json-loader": "~0.5.7",
"less": "~3.0.4",
"less-middleware": "~3.0.1",
"mocha": "~5.2.0",
"moment": "~2.22.2",
"piping": "~1.0.0-rc.4",
"proxyquire": "^1.7.9",
"react-addons-shallow-compare": "~15.6.2",
"react-google-charts": "~1.6.6",
"react-window-size": "~1.2.0",
"rimraf": "~2.6.2",
"sinon": "~6.0.0",
"sinon-as-promised": "~4.0.3",
"sinon-chai": "~2.8.0",
"weather-icons": "~1.3.2",
"webpack": "~4.12.0",
"webpack-cli": "~3.0.6",
"webpack-dev-middleware": "~3.1.3"
},
"engines": {
"node": "^8.9.0"
}
}