-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (58 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "final_project",
"version": "2.1.0",
"description": "School project DevObs & Nodejs",
"main": "./dist/server.js",
"scripts": {
"start": "node ./dist/server.js",
"start_ts": "./node_modules/.bin/ts-node src/server.ts",
"start_js": "nodemon ./dist/server.js",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./dist/tests/test.js --timeout 5000 --exit",
"populate": "./node_modules/.bin/mocha ./dist/tests/gopopulate.js --timeout 5000",
"build_app": "./node_modules/.bin/tsc -p tsconfig.json",
"dev": "./node_modules/.bin/nodemon"
},
"keywords": [
"example",
"heroku"
],
"author": "Cadenet Vincent",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"connect-mongo": "^3.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"gravatar": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.2.2",
"mongoose": "^5.8.1",
"nodemon": "^2.0.1",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"validator": "^12.1.0",
"istanbul": "^1.0.0-alpha.2"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/express": "^4.17.2",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.0",
"@types/prompt-sync": "^4.1.0",
"coveralls": "^3.0.9",
"jest": "^24.9.0",
"jshint": "^2.11.0-rc1",
"json-loader": "^0.5.7",
"mocha-lcov-reporter": "^1.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"engines": {
"node": "10.x"
}
}