-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "order_api",
"version": "1.0.0",
"description": "API used in webapp to simulate order backend",
"repository": {
"type": "git",
"url": "git://github.com/emilfolino/order_api.git"
},
"main": "app.js",
"scripts": {
"pretest": "$(v1/db/reset_test_db.bash) && $(v2/db/reset_test_db.bash)",
"test": "nyc --reporter=html --reporter=text --reporter=clover mocha \"./v*/test/*.js\" --timeout 10000",
"posttest": "npm run eslint",
"start": "nodemon app.js",
"clean": "rm -rf node_modules package-lock.json",
"eslint": "eslint ."
},
"author": "Emil Folino",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.4",
"ejs": "^3.1.9",
"email-validator": "^1.1.1",
"express": "^4.16.2",
"hat": "0.0.3",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.9.0",
"sqlite3": "^5.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.2.1",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.12.4",
"javascript-style-guide": "^0.9.10",
"mocha": "^9.2.2",
"node-html-parser": "^1.1.12",
"nyc": "^15.0.0"
}
}