-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.58 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
37
38
39
40
41
42
{
"name": "modelistic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass ./sass/main.scss ./public/css/style.css -w",
"devserver": "live-server",
"start:sass": "npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass ./sass/main.scss ./public/css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b \"last 30 versions\" ./public/css/style.comp.css -o ./public/css/style.prefix.css",
"compress:css": "node-sass ./public/css/style.prefix.css ./public/css/style.min.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css",
"compress:js": "uglifyjs --compress --mangle -o ./public/js/script.min.js -- ./public/js/script.js",
"build": "npm-run-all build:css compress:js",
"start": "nodemon --exec electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Suriya-2002/modelistic.git"
},
"author": "Suriya KS",
"license": "ISC",
"bugs": {
"url": "https://github.com/Suriya-2002/modelistic/issues"
},
"homepage": "https://github.com/Suriya-2002/modelistic#readme",
"devDependencies": {
"autoprefixer": "^10.2.5",
"electron": "^13.0.1",
"node-sass": "^6.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"uglify-es": "^3.3.9"
},
"dependencies": {
"ejs": "^3.1.6",
"express": "^4.17.1"
}
}