forked from codelearncreate/c2lc-coding-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.81 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
101
102
103
104
105
106
{
"name": "c2lc-coding-environment",
"version": "0.9.0",
"private": true,
"dependencies": {
"bootstrap": "4.6.0",
"classnames": "2.3.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"node-sass": "4.14.1",
"react": "16.14.0",
"react-bootstrap": "1.5.2",
"react-dom": "16.14.0",
"react-intl": "5.15.8",
"react-scripts": "4.0.3",
"tone": "14.7.77",
"typeface-roboto": "1.1.13"
},
"devDependencies": {
"flow-bin": "0.142.0",
"flow-coverage-report": "0.8.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prenetlify-build": "npm rebuild",
"netlify-build": "react-scripts build"
},
"eslintConfig": {
"extends": "react-app",
"ignorePatterns": [
"flow-typed/npm",
"node_modules/",
"src/vendor/",
"build/"
],
"rules": {
"indent": [
"error",
4,
{
"CallExpression": {
"arguments": "off"
},
"SwitchCase": 1
}
],
"no-console": "error",
"no-trailing-spaces": "error",
"no-unused-vars": [
"error",
{
"args": "after-used"
}
],
"no-var": "error",
"prefer-const": "error"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.test.js",
"!src/AddModeImage.js",
"!src/App.js",
"!src/AudioManagerImpl.js",
"!src/DashDriver.js",
"!src/DeleteModeImage.js",
"!src/FakeRobotDriver.js",
"!src/FakeAudioManager.js",
"!src/FeatureDetection.js",
"!src/FocusTrapManager.js",
"!src/TestUtils.js",
"!src/index.js",
"!src/serviceWorker.js",
"!src/vendor/**/*"
],
"coverageThreshold": {
"global": {
"branches": 89,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"coverageReporters": [
"text",
"text-summary",
"html"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}