-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Rambl",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"server": "node server/server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently \"npm run server\" \"npm run start\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build",
"lint": "./node_modules/.bin/eslint src/* && ./node_modules/.bin/eslint server/*",
"lintfix": "./node_modules/.bin/eslint --fix src/* && ./node_modules/.bin/eslint --fix server/*"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-regular-svg-icons": "^5.7.2",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"bootstrap": ">=3.4.1",
"concurrently": "^4.1.0",
"cross-fetch": "^3.0.1",
"custom-env": "^1.0.0",
"date-arithmetic": "^3.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"mysql": "^2.16.0",
"prop-types": "^15.7.2",
"query-string": "^6.3.0",
"react": "^16.8.1",
"react-big-calendar": "^0.20.3",
"react-bootstrap": "^1.0.0-beta.5",
"react-currency-input-field": "0.0.45",
"react-datepicker": "^2.2.0",
"react-devtools": "^3.6.0",
"react-dom": "^16.8.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.8",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"save": "^2.3.3",
"serve": "^10.1.2"
},
"devDependencies": {
"redux-mock-store": "^1.5.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "1.16.4"
},
"prettier": {
"parser": "flow",
"useTabs:": true,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}