-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "crown-server",
"version": "1.0.0",
"engines": {
"node": "10.16.0",
"npm": "6.4.1"
},
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"test-client": "cd client && yarn test"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "7.0.0",
"express": "^4.16.4",
"express-sslify": "1.2.0",
"nodemon": "^1.19.1",
"stripe": "6.28.0"
},
"devDependencies": {
"concurrently": "^4.0.1"
},
"author": {
"name": "Jason Williams",
"email": "jasonwilliams@letuscode.co.uk",
"url": "http://letuscode.co.uk"
},
"keywords": [
"stripe",
"expressjs",
"reactjs",
"react",
"styled-components",
"redux",
"jest",
"unit testing",
"payments",
"cart",
"memoization",
"dynamic routing",
"authentication",
"firebase",
"session storage",
"Redux-saga",
"react hooks"
],
"repository": {
"type": "git",
"url": ""
}
}