forked from dothemath-se/dothemath-app-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "dothemath-app-frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"build-storybook": "build-storybook -s public",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"start": "react-scripts start",
"storybook": "start-storybook -p 9009 -s public",
"test": "react-scripts test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"settings": {
"react": {
"version": "detect"
}
},
"plugins": [
"prettier"
],
"extends": [
"react-app",
"prettier"
],
"rules": {
"prettier/prettier": [
"warn"
]
}
},
"dependencies": {
"@sentry/browser": "^5.15.4",
"react": "^16.13.1",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-google-recaptcha": "^2.0.1",
"react-router-dom": "^5.2.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/react": "^16.9.33",
"@types/react-dom": "^16.9.6",
"@types/socket.io-client": "^1.4.32",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"node-sass": "^4.13.1",
"prettier": "^2.0.4",
"react-scripts": "3.4.1",
"typescript": "^3.8.3"
}
}