-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.28 KB
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
{
"name": "react-recipes",
"version": "1.0.0",
"description": "A starter for React-Apollo-GraphQL projects",
"main": "server.js",
"engines": {
"node": "v12.6.0"
},
"scripts": {
"start": "node server.js",
"build": "react-scripts build",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently --names \"server,client\" \"npm run server --silent\" \"npm run client --silent\"",
"heroku-postbuild": "npm install --prefix client"
},
"keywords": [],
"author": "",
"dependencies": {
"apollo-server-express": "^1.3.6",
"bcrypt": "^2.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^3.5.1",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.2",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.1.3",
"now": "^16.7.0",
"react-ckeditor-component": "^1.1.0",
"react-landing-page": "^2.0.2",
"react-pose": "^4.0.8",
"react-spinners": "^0.6.1",
"rebass": "^3.0.0-12",
"styled-components": "^4.4.0"
},
"devDependencies": {
"nodemon": "^1.17.5"
}
}