-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
42
43
44
45
{
"name": "shiftwerk",
"version": "1.0.0",
"description": "shift planning for werkers and makers",
"main": "server/server.js",
"scripts": {
"start": "nodemon server/server.js",
"test": "jest",
"server-prod": "node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daft-funk/shiftwerk.git"
},
"author": "daft-funk",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/daft-funk/shiftwerk/issues"
},
"homepage": "https://github.com/daft-funk/shiftwerk#readme",
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.3.1",
"nodemon": "^1.18.10",
"sequelize-mock": "^0.10.2",
"supertest": "^4.0.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"geolib": "^2.0.24",
"googleapis": "^38.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"pg": "^7.8.2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sequelize": "^4.43.0",
"twilio": "^3.29.2"
}
}