-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.53 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@etm12/circuiteer",
"version": "0.3.0",
"description": "Plan Astroneer bases, get overview of power usage and consumption",
"private": true,
"keywords": [
"react",
"partial lenses",
"astroneer",
"blueprint",
"planner"
],
"author": {
"email": "stefan@rimaila.fi",
"name": "Stefan Rimaila",
"url": "https://github.com/stuf"
},
"contributors": [],
"scripts": {
"dev": "cross-env BROWSER=none PORT=7070 yarn start",
"start": "react-scripts start",
"build": "cross-env SKIP_PREFLIGHT_CHECK=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:cov": "yarn test --coverage --watchAll=false",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"jest": {
"collectCoverageFrom": [
"!**/*.d.ts",
"!src/(components|containers|state|common|core|views)/**/index.js",
"!**/*.jsx",
"!**/*.json"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@visx/event": "^1.7.0",
"@visx/group": "^1.7.0",
"@visx/pattern": "^1.7.0",
"@visx/responsive": "^1.10.1",
"clsx": "^1.1.1",
"i18next": "^20.3.2",
"infestines": "^0.4.11",
"normalize.css": "^8.0.1",
"partial.lenses": "^14.17.0",
"prop-types": "^15.7.2",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.11.0",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"sass": "^1.35.1",
"web-vitals": "^1.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.2",
"@storybook/addon-essentials": "^6.3.2",
"@storybook/addon-links": "^6.3.2",
"@storybook/node-logger": "^6.3.2",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.3.2",
"@testing-library/react-hooks": "^7.0.0",
"cross-env": "^7.0.3"
}
}