-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.64 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
80
81
{
"name": "typescript-react-starter",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.tsx",
"dependencies": {
"@material-ui/core": "^4.1.3",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.18",
"@material-ui/styles": "^4.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"source-map-explorer": "^2.0.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-info": "^5.1.10",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.10",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.0",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.2",
"@types/react-test-renderer": "^16.8.3",
"@types/sinon": "^7.0.13",
"@types/storybook__addon-info": "^4.1.2",
"@types/storybook__addon-knobs": "^5.0.3",
"@types/styled-components": "^4.1.18",
"awesome-typescript-loader": "^5.2.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.13.0",
"enzyme-to-json": "^3.4.0",
"jest-image-snapshot": "^2.9.0",
"jest-puppeteer": "^4.1.1",
"prettier": "^1.18.2",
"puppeteer": "^1.18.1",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-test-renderer": "^16.8.6",
"sinon": "^7.3.2",
"start-server-and-test": "^1.9.0",
"storybook-addon-jsx": "^7.1.5",
"ts-jest": "^24.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"typescript": "3.5.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"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"
]
}
}