-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "jokedb",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"pm2": "clear & pm2 start ecosystem.config.js & pm2 monit",
"pm2.stop": "clear & pm2 stop JokeListApi",
"server": "clear & node server.js",
"sass": "sass src:public ",
"test.db": "clear & mocha ./lib/db.test.js ",
"test.dbh": "clear & mocha ./netlify/dbhub.test.js ",
"test.api": "clear & mocha ./lib/JokeListApi.test.js ",
"test.cucumber": "clear & npx cucumber-js --tags '@idEndpoint' "
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.26.0",
"express": "^4.17.3",
"express-graphql": "^0.12.0",
"graphql": "^14.7.0",
"json5": "^2.2.0",
"morgan": "^1.10.0",
"prompts": "^2.4.2",
"sass": "^1.49.9",
"sequelize": "^6.16.1",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.2",
"chai": "^4.3.6",
"geckodriver": "^3.0.1",
"mocha": "^9.2.0",
"netlify-cli": "^9.16.0",
"selenium-webdriver": "^4.1.1"
}
}