-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.77 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
59
60
61
62
63
64
{
"name": "nested-comments",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.6.2",
"@emotion/core": "^10.0.17",
"@mdx-js/react": "^1.5.0",
"@rebass/forms": "^4.0.6",
"@rebass/preset": "^4.0.5",
"@theme-ui/presets": "^0.2.42",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"dotenv-webpack": "^1.7.0",
"emotion-theming": "^10.0.19",
"express": "^4.17.1",
"final-form": "^4.18.5",
"jsonwebtoken": "^8.5.1",
"lodash.merge": "^4.6.2",
"netlify-lambda": "^1.6.3",
"nodemon": "^1.19.2",
"npm-run-all": "^4.1.5",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"react": "^16.10.0",
"react-content-loader": "^4.3.0",
"react-dom": "^16.10.0",
"react-final-form": "^6.3.0",
"react-router-dom": "^5.1.1",
"react-scripts": "3.1.2",
"react-timeago": "^4.4.0",
"rebass": "^4.0.6",
"sequelize": "^5.19.1",
"serverless-http": "^2.3.0",
"theme-ui": "^0.2.43",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"start:client": "react-scripts start",
"start:lambda": "netlify-lambda serve server --config ./webpack.functions.js",
"start": "concurrently -n client,server \"yarn start:client\" \"yarn start:lambda\"",
"build:client": "react-scripts build",
"build:lambda": "netlify-lambda build server --config ./webpack.prod.functions.js",
"build": "run-s build:**",
"postinstall": "netlify-lambda install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}