-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 905 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 905 Bytes
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
{
"name": "absencebot",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"bundle": "git archive -v -o absencebot.zip --format=zip HEAD",
"pre-test": "NODE_ENV=test yarn start",
"test": "concurrently \"yarn pre-test\" \"wait-on http://localhost:8081 && ./node_modules/.bin/jest\""
},
"author": "kubaue",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"moment-timezone": "^0.5.23",
"mongodb": "^3.1.8",
"node-schedule": "^1.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"concurrently": "^4.0.1",
"jest": "^23.6.0",
"wait-on": "^3.2.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"testEnvironment": "node"
}
}