-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "@qualified/react-challenge",
"private": true,
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"sandpackVersion": "0.10.11",
"dependencies": {
"@babel/runtime": "7.20.6",
"axios": "1.2.1",
"classnames": "2.3.2",
"cross-fetch": "3.1.5",
"immer": "9.0.16",
"marked": "4.2.4",
"mobx": "6.7.0",
"mobx-react": "7.6.0",
"nanoid": "4.0.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-cookie": "4.1.1",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-redux": "8.0.5",
"react-router-dom": "6.4.5",
"react-scripts": "3.4.1",
"redux": "4.2.0",
"reselect": "4.1.7",
"styled-components": "5.3.6",
"use-immer": "0.8.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1"
},
"scripts": {
"build": "react-scripts build",
"docker:build": "docker image build . -t thinkful-ed/zid-fe-react-state-management-xx-assignment",
"docker:run": "docker run --rm -it -p 3000:3000 thinkful-ed/zid-fe-react-state-management-xx-assignment",
"docker:stop": "docker stop $(docker ps -q)",
"docker:test": "docker run -t thinkful-ed/zid-fe-react-state-management-xx-assignment npm test",
"eject": "react-scripts eject",
"start": "react-scripts start",
"start:solution": "npm run -it docker:build && npm run docker:run",
"test": "react-scripts test",
"test:solution": "npm run docker:build && npm run docker:test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}