-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
59
60
{
"name": "safer-server",
"version": "0.0.1",
"description": "An api to handle authentication, database storage, friend requests, and location data for safer-apk.",
"main": "index.js",
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"dev": "nodemon server/index.js",
"generateCoverage": "istanbul cover ./node_modules/mocha/bin/_mocha ./server/spec/LiveServerIntegrationSpec.js",
"test": "npm run datainit && mocha server/spec",
"devtest": "mocha server/spec",
"start": "node server/index.js",
"datainit": "mysql -u root < ./db/schema.sql"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blink672/safer-server.git"
},
"author": "Blink-672",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/blink672/safer-server/issues"
},
"homepage": "https://github.com/blink672/safer-server#readme",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"firebase-admin": "^4.2.1",
"mongoose": "^4.9.3",
"mysql": "^2.13.0",
"phone": "^1.0.9",
"react": "16.0.0-alpha.6",
"react-native": "0.43.2",
"react-native-contacts": "^0.8.1",
"sequelize": "^3.30.4"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"mocha": "^3.2.0",
"mocha-eslint": "^3.0.1",
"node-mocks-http": "^1.6.1",
"nodemon": "^1.11.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"supertest": "3.0.0"
},
"babel": {
"presets": [
"es2015"
]
}
}