-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.42 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "waynes-world",
"author": "Matt Breckon",
"license": "ISC",
"version": "0.1.2",
"private": true,
"scripts": {
"start": "REACT_APP_API_IP=`ifconfig | grep 'inet ' | grep -v 127.0.0.1 | cut -d\\ -f2` REACT_APP_API_PORT=3100 react-scripts start",
"build": "REACT_APP_API_PORT=8700 react-scripts build",
"test": "react-scripts test -u --watchAll=false",
"test:watch": "react-scripts test",
"lint": "eslint -c .eslintrc.yml 'src/**/*.{ts,tsx}' && stylelint --config .stylelintrc.yml 'src/**/*.scss'",
"lint:fix": "eslint -c .eslintrc.yml 'src/**/*.{ts,tsx}' --fix && stylelint --fix --config .stylelintrc.yml 'src/**/*.scss'",
"prod:up": "docker-compose up -d",
"prod:down": "docker-compose down"
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.161",
"@types/node": "^12.12.62",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/redux-logger": "^3.0.8",
"axios": "^0.21.1",
"browser-image-compression": "^1.0.13",
"classnames": "^2.2.6",
"colorthief": "^2.3.2",
"date-fns": "^2.16.1",
"fuzzysort": "^1.1.4",
"lodash": "^4.17.20",
"mutationobserver-shim": "^0.3.7",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.9.0",
"react-redux": "^7.2.1",
"react-scripts": "3.4.3",
"react-svg": "^11.0.42",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"typescript": "^3.9.7"
},
"devDependencies": {
"eslint-config-airbnb-typescript": "^6.3.2",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.1.2",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 3 ios_saf version"
]
}
}