forked from leanprover-community/lean4web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.29 KB
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
{
"name": "leanweb",
"private": true,
"version": "0.2.1",
"workspaces": [
"client",
"server"
],
"scripts": {
"start": "concurrently -n server,client -c blue,green \"npm run start:server\" \"npm run start:client\"",
"start:client": "npm --workspace client run dev",
"start:server": "npm --workspace server run dev",
"build": "npm run build:server && npm run build:client",
"build:client": "npm --workspace client run build",
"build:server": "npm --workspace server run build",
"production": "npm run prod",
"prod": "npm --workspace server run prod",
"lint": "eslint .",
"format": "prettier --write .",
"test": "npm run test:dev",
"test:dev": "concurrently -k -s first -n server,client,cypress -c blue,green,cyan \"npm run start:server\" \"npm run start:client\" \"npm run test:dev:bare\" --hide server",
"test:dev:bare": "wait-on \"http://localhost:8080/health\" \"http://localhost:3000\" && cypress run",
"test:prod": "concurrently -k -s first -n server,cypress -c blue,cyan \"npm run build && PORT=3000 npm run production\" \"npm run test:prod:bare\"",
"test:prod:bare": "wait-on \"http://localhost:3000\" && cypress run",
"test:prod:windows:bare": "wait-on \"http://localhost:3000\" && CYPRESS_USER_AGENT_OS=\"Windows NT 10.0; Win64; x64\" cypress run --browser chromium",
"test:prod:windows": "concurrently -k -s first -n server,cypress -c blue,cyan \"npm run build && PORT=3000 npm run production\" \"npm run test:prod:windows:bare\" --hide server"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"concurrently": "^9.2.1",
"cypress-iframe": "^1.0.1",
"cypress-real-events": "^1.15.0",
"cypress": "^15.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"typescript-eslint": "^8.50.1",
"typescript": "^5.9.3",
"wait-on": "^9.0.3"
},
"engines": {
"node": ">=24.x"
}
}