-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "azurespeedtest2",
"version": "1.0.0",
"main": "index.jsx",
"scripts": {
"watch": "watchify -v -t babelify index.jsx -g [ envify --NODE_ENV development ] -o index.min.js",
"build": "npm run lint && npm run browserify",
"lint": "eslint . --ext .js --ext .jsx",
"browserify": "browserify -t babelify index.jsx -g [ envify --NODE_ENV production ] | uglifyjs --compress --mangle > index.min.js",
"test": "node test/cb-endpoints-test.mjs",
"test:endpoints": "node test/cb-endpoints-test.mjs"
},
"author": "Richard Astbury",
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-sparklines": "^1.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.5",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"babelify": "^10.0.0",
"browserify": "^17.0.1",
"canvas": "^3.2.0",
"envify": "^4.1.0",
"eslint": "^9.28.0",
"eslint-plugin-react": "^7.37.5",
"mocha": "^11.5.0",
"uglify-js": "^3.19.3",
"watchify": "^4.0.0"
},
"type": "module"
}