-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1016 Bytes
/
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
{
"name": "resources",
"version": "1.0.0",
"description": "Links and embedded wikis on computer science, philosophy, economics, etc.",
"main": "server.js",
"scripts": {
"build": "node build.js",
"build-sass": "sass src/scss/style.scss public/css/style.css && cp -r public/css/* dist/css",
"dev": "concurrently -k -p \"[{name}]\" -n \"Sass,Web\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm:watch-sass\" \"npm:serve-web\"",
"serve-web": "node dev-server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-sass": "sass --watch src/scss/style.scss public/css/style.css"
},
"author": "Elias Jackson",
"license": "ISC",
"dependencies": {
"change-case": "^4.1.2",
"concurrently": "^6.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"flat": "^5.0.2",
"fs-extra": "^9.1.0",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"markdown-it": "^12.0.4",
"materialize-css": "^1.0.0",
"sass": "^1.32.8",
"title-case": "^3.0.3"
}
}