-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.14 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
{
"name": "rosetta",
"private": true,
"type": "module",
"version": "2.0.7",
"workspaces": [
"src/client",
"src/server",
"scripts"
],
"scripts": {
"lint": "grunt lint",
"type-check": "grunt type-check",
"start-node": "bash ../perennial/bin/sage run src/server/app.ts",
"dev-node": "nodemon --exec \"bash ../perennial/bin/sage run src/server/app.ts",
"debug": "npm run make-public-config && npm run build --workspace=client && bash ../perennial/bin/sage run --inspect src/server/app.ts",
"make-public-config": "bash ../perennial/bin/sage run ./scripts/js/make-public-config-file.mjs",
"dev": "npm run make-public-config && npm run lint && npm run type-check && concurrently \"npm run dev --workspace=client\" \"npm run dev-node\"",
"start": "npm run make-public-config && npm run lint && npm run type-check && npm run build --workspace=client && npm run start-node",
"prod": "npm run make-public-config && npm run build --workspace=client && npm run start-node"
},
"devDependencies": {
"@babel/core": "~7.20.12",
"concurrently": "~8.0.1",
"grunt": "~1.5.3",
"winston": "~3.8.2"
}
}