-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.3 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
{
"name": "shel-neos-workspace-module",
"version": "1.0.0",
"license": "GNU GPLv3",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"build": "yarn workspace @workspace-module/app build",
"watch": "yarn workspace @workspace-module/app watch",
"lint": "yarn eslint Resources/Private/JavaScript",
"dev": "yarn workspace @workspace-module/dev-server dev",
"test:integration": "yarn cypress run"
},
"workspaces": [
"Resources/Private/JavaScript",
"Tests/dev-server"
],
"dependencies": {
"@workspace-module/app": "*"
},
"devDependencies": {
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@workspace-module/dev-server": "*",
"cypress": "12.17.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testcafe": "^0.2.1",
"parcel": "^2.12.0",
"prettier": "^3.3.1",
"typescript": "^4.9.5"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"packageManager": "yarn@4.2.2"
}