-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1 KB
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
{
"completed": true,
"name": "web-stack-schema",
"version": "1.0.0",
"description": "Web-Stack Schema",
"main": "dist/index.js",
"scripts": {
"build:data": "node build-data.js",
"build:css": "sass src/index.scss dist/index.css --no-source-map --style compressed",
"build:js": "rollup --config",
"build": "npm-run-all -s build:data build:css build:js",
"watch:css": "sass src/index.scss dist/index.css --no-source-map --style compressed --watch",
"watch:js": "rollup --config --watch",
"watch": "npm-run-all -p watch:css watch:js",
"server": "node server.js"
},
"author": "FLighter",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"express": "^4.18.2",
"github-markdown-css": "^5.2.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.58.3"
},
"dependencies": {
"marked": "^4.2.12"
}
}