-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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": "nomii_rewards",
"version": "1.0.0",
"description": "The serverless backend using GraphQL for Nomii-Rewards App",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy-staging": "cd serverless && serverless --stage staging deploy",
"log": "cd serverless && sls logs -f graphql --tail",
"deploy-production": "cd serverless && serverless --stage=dev deploy",
"dev-client": "webpack -d --watch",
"host-server": "DEBUG_MODE=true nodemon ./serverless/dev/server.js",
"host-client": "cd client && firebase serve",
"host-fake-db": "json-server --watch ./serverless/dev/db.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChenLi0830/Nomii-Rewards-Serverless.git"
},
"author": "Chen Li",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChenLi0830/Nomii-Rewards-Serverless/issues"
},
"homepage": "https://github.com/ChenLi0830/Nomii-Rewards-Serverless#readme",
"dependencies": {
"express": "^4.15.2",
"express-graphql": "^0.6.3",
"graphiql": "^0.9.3",
"graphql": "^0.9.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"aws-sdk": "^2.22.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"webpack": "^1.14.0"
}
}