-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.05 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
{
"name": "reinforz",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.4.1",
"js-yaml": "^4.1.0",
"notistack": "^2.0.3",
"prismjs": "^1.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.4",
"react-icons": "^4.3.1",
"react-markdown": "^8.0.0",
"react-router-dom": "^6.2.1",
"rehype-raw": "^6.1.1",
"shortid": "^2.2.16"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/preset-create-react-app": "^4.0.1",
"@storybook/react": "^6.4.19",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^3.12.6",
"@types/prismjs": "^1.16.5",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.13",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/shortid": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chromatic": "^6.4.3",
"jest": "^26.6.3",
"react-scripts": "^5.0.0",
"sass": "^1.34.1",
"ts-jest": "^26.5.6",
"typescript": "^4.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:react": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"test:unit": "npx jest --runInBand",
"sb:start": "npx start-storybook -p 3001",
"sb:build": "npx build-storybook"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}