-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.45 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
{
"name": "@shabados/viewer",
"version": "1.6.0",
"description": "Viewer for the Shabad OS Database",
"scripts": {
"start": "npm-run-all -l -p start:*",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"install-deps": "npm-run-all -l -p install-deps:*",
"install-deps:frontend": "cd frontend && npm install",
"install-deps:backend": "cd backend && npm install",
"postinstall": "npm run install-deps",
"test:e2e": "cypress open",
"test:e2e:headless": "cypress run",
"test": "start-server-and-test start http-get://localhost:52525 test:e2e:headless",
"test:dev": "start-server-and-test start http-get://localhost:52525 test:e2e",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"lint": "npm-run-all -l -p lint:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShabadOS/viewer.git"
},
"author": "Shabad OS Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShabadOS/viewer/issues"
},
"homepage": "https://github.com/ShabadOS/viewer#readme",
"devDependencies": {
"@pulumi/kubernetes": "^3.21.1",
"@pulumi/pulumi": "^3.39.0",
"@shabados/eslint-config": "^0.6.0",
"@types/jest": "^29.0.0",
"cypress": "^10.7.0",
"jest": "^29.0.1",
"npm-run-all": "^4.1.5",
"start-server-and-test": "^1.14.0",
"typescript": "^4.8.2"
}
}