-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "readable",
"version": "0.1.0",
"private": true,
"dependencies": {
"moment": "^2.19.1",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.0.13",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"skeleton-css-webpack": "^2.0.4",
"sort-by": "^1.2.0",
"uuid": "^3.1.0"
},
"engines": {
"node": "13.1.0",
"npm": "6.13.1"
},
"scripts": {
"build": "npm run clean && react-scripts build",
"clean": "rm -rf build",
"dev": "run-p server start",
"eject": "react-scripts eject",
"lint": "eslint src; exit 0",
"server": "node server/server.js",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"reddit-clone-server": "file:server"
}
}