-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "sos-sms-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage --forceExit --runInBand",
"testjest": "jest --coverage",
"dbon": "mkdir -p ./db && mongod --dbpath ./db",
"dboff": "killall mongod",
"build": "babel src -d build",
"start": "babel src -d build && node index.js"
},
"jest": {
"setupFiles": [
"<rootDir>/src/__test__/lib/jest-setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/401-Team-Awesome/sos-sms-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"aws-sdk-mock": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.0",
"fs-extra": "^6.0.1",
"jest": "^22.4.3",
"twilio": "^3.17.0"
},
"dependencies": {
"aws-sdk": "^2.236.1",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"faker": "^4.1.0",
"http-errors": "^1.6.3",
"jsonwebtoken": "^8.2.1",
"lint": "^1.1.2",
"mongoose": "^5.0.16",
"multer": "^1.3.0",
"superagent": "^3.8.3",
"uuid": "^3.2.1",
"winston": "^3.0.0-rc4"
}
}