-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.1 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
{
"name": "physics-in-motion",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/LeNPaul/physics-in-motion-dev.git"
},
"author": "Paul Le <[email protected]>",
"description": "Full stack web application for teaching people physics in an intuitive way",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.1",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.3.3",
"debug": "^4.1.1",
"express": "^4.11.1",
"express-session": "^1.10.1",
"mocha": "^6.2.2",
"mongoose": "^5.7.6",
"morgan": "^1.5.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"pug": "^2.0.3",
"serve-favicon": "^2.5.0",
"should": "^13.2.3"
},
"devDependencies": {
"del": "^5.0.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-terser": "^1.2.0",
"nodemon": "^1.19.4"
}
}