forked from coderhive/backend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "ch-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon --exec babel-node ./index.js",
"knex": "knex",
"test": "jest --coverage",
"test:super": "mocha -u tdd -- test/supertest_users.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chuckhagy/backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chuckhagy/backend/issues"
},
"homepage": "https://github.com/chuckhagy/backend#readme",
"dependencies": {
"aws-sdk": "^2.172.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"cors": "^2.8.4",
"cssbeautify": "^0.3.1",
"dotenv": "^4.0.0",
"esformatter": "^0.10.0",
"esformatter-jsx": "^8.0.1",
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"graphql": "^0.11.7",
"graphql-server-express": "^1.2.0",
"graphql-tools": "^2.9.0",
"jest": "^21.2.1",
"jsonwebtoken": "^8.1.0",
"knex": "^0.14.2",
"mocha": "^4.0.1",
"mock-knex": "^0.4.0",
"moment": "^2.19.3",
"pg": "^7.4.0",
"stream": "0.0.2",
"supertest": "^3.0.0",
"webshot": "^0.18.0"
},
"devDependencies": {
"eslint": "^4.12.0",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.12.1"
}
}