-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "short-music",
"version": "0.1.0",
"private": true,
"license": "MIT",
"proxy": "http://localhost:3001",
"dependencies": {
"fast-memoize": "^2.5.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.0",
"react-icons": "^3.0.5",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.8",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^3.3.3",
"uuid": "^3.3.2"
},
"scripts": {
"start": "tmux new-session 'yarn client:start' \\; split-window 'sh -c \"cd docker && docker-compose -f docker-compose.dev.yml up\"' \\; attach",
"client:start": "react-scripts start",
"build": "react-scripts build",
"analyse-bundle": "node bin/analyseBundle.js",
"lint": "eslint src/**/*"
},
"devDependencies": {
"@types/node": "^10.5.8",
"@types/react": "^16.8.7",
"@types/react-dom": "^16.8.2",
"@types/react-helmet": "^5.0.7",
"@types/react-redux": "^7.0.3",
"@types/react-router-dom": "^4.3.0",
"@types/redux-thunk": "^2.1.0",
"@types/uuid": "^3.4.3",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"eslint-config-prettier": "^4.1.0",
"typescript": "^3.3.3333",
"webpack-bundle-analyzer": "^2.13.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}