forked from OpenCircuits/OpenCircuits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.85 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
107
108
109
110
111
{
"private": true,
"workspaces": [
"src/app",
"src/site/shared",
"src/site/pages/*"
],
"type": "module",
"scripts": {
"start": "node ./build/scripts/start.js",
"build": "node ./build/scripts/build.js",
"build:prod": "node ./build/scripts/build.js --prod server digital",
"docs": "cd ./src/site/pages/docs && yarn start",
"build:docs": "cd ./src/site/pages/docs && yarn build",
"build:jsdocs": "node ./build/scripts/docs/index.js",
"test": "node ./build/scripts/test.js",
"coverage": "node ./build/scripts/test.js --coverage",
"test-e2e:digital": "npx playwright test --config ./playwright/config/digital.config.ts",
"test-e2e:landing": "npx playwright test --config ./playwright/config/landing.config.ts",
"test-e2e:ci": "npx playwright test --config ./playwright/config/ci.config.ts",
"lint": "node ./build/scripts/lint.js --cache",
"lint:all": "node ./build/scripts/lint.js --cache --all",
"lint:fix": "node ./build/scripts/lint.js --cache --fix",
"lint:fix:all": "node ./build/scripts/lint.js --cache --fix --all",
"postinstall": "tsc --project ./scripts/tsconfig.json && copyfiles ./scripts/utils/browser/openChrome.applescript ./build"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@playwright/test": "^1.41.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^29.0.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.7.16",
"@types/prompts": "^2.0.14",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"babel-loader": "^8.2.5",
"chalk": "^5.0.1",
"copyfiles": "^2.4.1",
"css-loader": "^6.7.1",
"detect-port-alt": "^1.1.6",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"emscript-loader": "^1.0.6",
"eslint": "^8.19.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-opencircuits": "file:./scripts/linting",
"eslint-plugin-playwright": "^0.22.2",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^43.0.0",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.5.0",
"interpolate-html-plugin": "^4.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-watch-typeahead": "^1.1.0",
"mini-css-extract-plugin": "^2.6.1",
"open": "^8.4.0",
"ora": "^6.1.2",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.2",
"prompts": "^2.4.2",
"react-refresh": "0.14.0",
"react-refresh-typescript": "^2.0.7",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"simple-git": "^3.14.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-morph": "^15.1.0",
"typescript": "^4.8.2",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"yargs": "^17.5.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}