-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 KB
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": "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 \"./v2/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",
"dotenv": "^17.2.3",
"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",
"stripe": "^19.3.1"
},
"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": "^11.6.0",
"node-html-parser": "^1.1.12",
"nyc": "^15.0.0"
}
}