This repository was archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
45
46
47
48
{
"name": "webarebears-webinfo",
"version": "1.0.1",
"description": "",
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/kolatat/info30005-2018-we-bare-bears.git"
},
"scripts": {
"start": "node .",
"test": "echo \"Warning: no test specified\" && exit 0",
"install-task:scss": "npm run sass:build",
"install-task:typescript": "tsc -p .",
"install": "npm-run-all -p install-task:*",
"build-task:scss-compile": "node-sass-chokidar --source-map true public/scss/ -o public/css",
"build-task:autoprefixer": "postcss public/css/*.css --use autoprefixer -d public/css",
"sass:build": "npm-run-all -p build-task:*",
"sass:watch": "chokidar \"public/scss/**/*.scss\" -c \"npm run sass:build\"",
"dev": "npm-run-all -p sass:*"
},
"author": "Mei Chin, Dalzy Eula Mendoza, Kolatat Thangkasemvathana",
"private": true,
"license": "ISC",
"dependencies": {
"autoprefixer": "~8.5.0",
"chokidar-cli": "~1.2.0",
"debug": "~3.1.0",
"dotenv": "~5.0.1",
"ejs": "~2.6.1",
"express": "~4.16.3",
"fb": "~2.0.0",
"mongodb": "~3.1.0-beta4",
"node-cache": "~4.2.0",
"node-sass-chokidar": "~1.3.0",
"npm-run-all": "~4.1.3",
"postcss-cli": "~5.0.0",
"q": "~1.5.1",
"typescript": "~2.8.3"
},
"devDependencies": {
"@types/ejs": "~2.5.1",
"@types/express": "~4.11.1",
"@types/mongodb": "~3.0.18",
"@types/node": "~10.1.0",
"@types/q": "~1.5.0"
}
}