-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
39 lines (39 loc) · 1.38 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
{
"name": "orleansdashboardapp",
"version": "1.0.0",
"description": "An admin dashboard for Microsoft Orleans",
"repository": "github:OrleansContrib/OrleansDashboard",
"main": "index.js",
"scripts": {
"build": "npm run lint && npm run test && npm run browserify",
"lint": "eslint . --ext .js --ext .jsx",
"test": "mocha",
"browserify": "cross-env BABEL_ENV=production browserify index.jsx -t babelify -g [ envify --NODE_ENV production ] -g uglifyify | uglifyjs --compress warnings=false --mangle > ../OrleansDashboard/index.min.js",
"watch": "cross-env BABEL_ENV=development watchify index.jsx -t babelify -g [ envify --NODE_ENV development ] -o ../Tests/TestHosts/TestHost/index.min.js"
},
"dependencies": {
"chart.js": "^2.9.4",
"eventthing": "^1.0.7",
"humanize-duration": "^3.15.1",
"react": "^15.6.2",
"react-chartjs": "github:reactjs/react-chartjs#chartjs-v2",
"react-dom": "^15.6.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babelify": "^9.0.0",
"browserify": "^16.2.3",
"cross-env": "^5.2.0",
"envify": "^4.1.0",
"eslint": "^5.14.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^10.1.0",
"uglify-js": "^3.4.8",
"uglifyify": "^5.0.1",
"watchify": "^3.11.1"
},
"author": "Richard Astbury",
"license": "MIT"
}