forked from richorama/AzureSpeedTest2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "GitHubAzureDevOpsSpeedTest",
"version": "1.0.0",
"main": "index.jsx",
"scripts": {
"start": "http-server -p 8080 -o",
"test": "mocha test/**/*.test.js",
"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 ] -g uglifyify | uglifyjs --compress --mangle > index.min.js"
},
"author": "Janusz Nowak",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-sparklines": "^1.7.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^17.0.0",
"envify": "^4.1.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.3",
"http-server": "^14.1.1",
"mocha": "^11.7.5",
"uglify-js": "^3.19.3",
"uglifyify": "^5.0.2",
"watchify": "^4.0.0"
}
}