-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 764 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 764 Bytes
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
{
"name": "Q1-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "browserify scripts/main.js -o dist/bundle.js",
"watch": "watchify scripts/main.js -o dist/bundle.js",
"dev-server": "live-server",
"dev": "run-all \"npm run watch\" \"npm run dev-server\"",
"uglify": "uglifyjs dist/bundle.js --mangle --compress -o dist/bundle.min.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"browserify": "^16.2.2",
"live-server": "^1.2.0",
"run-all": "^1.0.1",
"uglify-es": "^3.3.9",
"watchify": "^3.11.0"
},
"dependencies": {
"convert-time": "^0.3.0",
"dateformat": "^3.0.3",
"highcharts": "^6.1.0",
"lodash": "^4.17.10"
}
}