-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.13 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@seed-vault/api",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "babel server --delete-dir-on-start --copy-files --out-dir dist",
"lint": "NODE_ENV=test eslint server lib tests",
"serve": "NODE_ENV=development DEBUG=API.* nodemon --watch .env --watch server --watch lib --exec 'babel-node -r dotenv/config -- ./server/bin/www'",
"serve:test": "NODE_ENV=test node -r dotenv/config ./dist/bin/www",
"serve:prod": "NODE_ENV=production node -r dotenv/config ./dist/bin/www",
"test": "jest --runInBand --detectOpenHandles --useStderr --forceExit",
"test:users": "jest -i ./tests/unit/users/*.test.js --runInBand --detectOpenHandles --useStderr --forceExit",
"test:components": "jest -i ./tests/unit/bots/ComponentService.test.js --runInBand --detectOpenHandles --useStderr --forceExit",
"test:bots": "jest -i ./tests/unit/bots/BotService.test.js --runInBand --detectOpenHandles --useStderr --forceExit",
"test:reviews": "jest -i ./tests/unit/bots/ReviewService.test.js --runInBand --detectOpenHandles --useStderr --forceExit"
},
"dependencies": {
"@seed-vault/seedtoken-api-client": "github:SeedVault/seedtoken-api-client",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-redis": "^4.0.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "~4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"http-errors": "~1.7.3",
"moment": "^2.24.0",
"mongoose": "^5.9.1",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"nodemailer": "^6.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"redis": "^2.8.0",
"uuid4": "^1.1.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.7.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2"
}
}