-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.83 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
{
"name": "squishy_electron_4",
"version": "0.4.2",
"author": "Allan Bonadio <[email protected]> (http://portfolio.tactileint.org)",
"description": "An interactive simulator for a quantum mechanical electron",
"private": true,
"type": "module",
"dependencies": {
"ajv": "^8.11.2",
"ajv-keywords": "^5.1.0",
"d3": "^6.7.0",
"dialog-polyfill": "^0.5.6",
"install": "^0.13.0",
"npm": "^9.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-faux-dom": "^4.5.0",
"web-vitals": "^2.1.4",
"webgl-lint": "^1.10.1"
},
"scripts": {
"start": "craco start",
"startNorm": "react-scripts start",
"startbb": "REACT_EDITOR=bbedit react-scripts start",
"test": "craco test",
"testjs": "node --experimental-vm-modules node_modules/.bin/jest --runInBand",
"testjsdb": "node --experimental-vm-modules node_modules/.bin/jest --runInBand",
"testcpp": "quantumEngine/testing/cppuRunner.sh \"$@\" ",
"testcppdb": "quantumEngine/testing/cppuRunner.sh db \"$@\" ",
"cleanAll": "make cleanAll",
"ejectdonteverdothis": "react-scripts eject",
"build": "maint/productionBuild.sh",
"deploy": "maint/deploy.sh"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-ex-assign": 0,
"eqeqeq": 0,
"no-throw-literal": 0,
"default-case": 0,
"no-self-assign": 0,
"no-mixed-operators": 0,
"no-new-func": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"eslint": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-webpack-plugin": "^3.2.0",
"jest": "^26.6.3",
"jest-circus": "26.6.0",
"jest-resolve": "26.6.0",
"jest-watch-typeahead": "0.6.1",
"marked": "^4.2.12",
"marked-katex-extension": "^1.0.2",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "5.0.2",
"react-scripts": "5.0.1",
"react-test-renderer": "^18.2.0",
"sass": "^1.57.0",
"sass-loader": "^10.4.1"
}
}