-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "instructor-assistant",
"version": "1.0.0",
"description": "Tool to empower instructors to ask 1-on-1 questions at scale.",
"main": "server.js",
"scripts": {
"postinstall": "npm run postinstall:indexhtml && npm run postinstall:bundlejs",
"postinstall:indexhtml": "rm -rf dist && mkdir dist && cp ./client/index.html ./dist/index.html",
"postinstall:bundlejs": "webpack",
"start": "node server.js",
"start:dev:server": "nodemon server.js",
"start:dev:client": "npm run postinstall:indexhtml && webpack --watch"
},
"author": "Gerry Pass",
"license": "ISC",
"dependencies": {
"angular": "^1.6.4",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-router": "^0.4.2",
"angularfire": "^2.3.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"css-loader": "^0.28.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"firebase": "^3.7.6",
"glob": "^7.1.1",
"morgan": "^1.8.1",
"node-sass": "^4.5.2",
"path": "^0.12.7",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.3",
"serve-favicon": "^2.4.2",
"style-loader": "^0.16.1",
"webpack": "^2.3.3"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}