-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
36 lines (36 loc) · 1.22 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
{
"name": "webpack-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"No tests yet!\"",
"build": "npm-run-all build-js build-css",
"watch": "npm-run-all -p watch-css watch-js",
"build-js": "node_modules/.bin/grunt ngtemplates && node_modules/.bin/webpack-cli --mode production",
"watch-js": "webpack-cli --watch --mode=production",
"build-css": "node-sass-chokidar --include-path ./src/scss --include-path ./node_modules src/scss -o designer/ --output-style compressed --recursive",
"watch-css": "node-sass-chokidar --include-path ./src/scss --include-path ./node_modules src/scss -o designer/ --output-style compressed --recursive --watch"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"grunt": "^1.4.1",
"grunt-angular-templates": "^1.1.0",
"grunt-cli": "^1.4.3",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"admin-lte": "^2.4.11",
"angular": "^1.7.5",
"angular-route": "^1.7.5",
"bootstrap": "^3.3.7",
"file-saver": "^1.3.8",
"jquery": "^3.6.0",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5"
}
}