-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "react-workshop-app",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"scripts": {
"init": "confy-core init --env=development",
"start": "confy-core start --env=development",
"build": "confy-core build --env=production",
"test": "confy-core test --env=test",
"test-watch": "confy-core test --env=test --watch",
"config": "confy-core show-config --env=development"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@confy/core": "~0.7.0",
"@confy/preset-react": "~0.4.1",
"@confy/preset-typescript": "~0.4.4",
"@emotion/babel-plugin": "^11.1.2",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"jest-environment-jsdom-sixteen": "^1.0.3",
"msw": "^0.26.2",
"node-fetch": "^2.6.1"
},
"dependencies": {
"@emotion/react": "^11.1.4",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"formik": "^2.2.6",
"react-query": "^3.6.0",
"react-router-dom": "^5.2.0"
}
}