-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
43
44
{
"name": "junkboy3000",
"version": "1.0.0",
"description": "quick filtered list of junk, with the components that can be extracted",
"main": "index.js",
"watch": {
"build:css": {
"patterns": [
"dist/assets/sass"
],
"extensions": [
"scss"
]
},
"build:js": {
"patterns": [
"dist/assets/js"
],
"extensions": [
"js"
]
}
},
"scripts": {
"build:all": "npm-run-all --parallel build:js build:css",
"build:css": "node-sass -o docs/assets/css dist/assets/sass/style.scss --output-style compressed",
"build:js": "uglifyjs dist/assets/js/main.js -o docs/assets/js/scripts.min.js",
"dev": "npm-run-all --parallel serve watch",
"serve": "node ./node_modules/http-server/bin/http-server ./docs",
"watch": "npm-watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concat": "^1.0.3",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"uglify-js": "^3.17.4"
},
"dependencies": {
"http-server": "^14.1.1",
"npm-watch": "^0.11.0"
}
}