-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (25 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (25 loc) · 796 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
{
"name": "admin",
"version": "1.0.0",
"description": "Modulo admin app",
"scripts": {
"bundle": "browserify --entry src/main.js --outfile dist/bundle.js",
"bundle_watch": "watchify --entry src/main.js --outfile dist/bundle.js",
"minify": "uglify --compress --mangle --source-map dist/bundle.min.map dist/bundle.js --output dist/bundle.min.js",
"build_prod": "npm run bundle && npm run minify",
"build_dev": "concurrently 'npm run bundle_watch' 'lite-server ./'"
},
"author": "Vinit Tiwari",
"license": "ISC",
"dependencies": {
"angular": "^1.6.5",
"angular-ui-router": "^1.0.3"
},
"devDependencies": {
"browserify": "^14.4.0",
"concurrently": "^3.5.0",
"lite-server": "^2.3.0",
"uglify": "^0.1.5",
"watchify": "^3.9.0"
}
}