-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "e-corpus",
"version": "1.0.0",
"description": "3D model database and content management system with integrated annotations and stories 3D editor",
"scripts": {
"start": "cd source/server/ && ROOT_DIR=\"$(pwd)/../..\" EXPERIMENTAL=1 npm start",
"test": "cd source/server/ && npm test",
"build-ui": "cd source/ui && webpack --mode=production",
"build-server": "tsc -b source/server",
"watch-server": "tsc -b source/server --watch",
"watch-ui": "cd source/ui && webpack --watch --mode=development",
"watch": "NODE_ENV=development concurrently -k --prefixColors auto --names \"ts,ui,eC\" \"npm run watch-server -- --preserveWatchOutput\" \"npm run watch-ui\" \"nodemon npm start\""
},
"author": "Holusion <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=16.20.2"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.9",
"typescript": "^5.7.3",
"webpack": "^5.88.1",
"webpack-cli": "^4.9.2"
},
"nodemonConfig": {
"delay": 100,
"extensions": [
"ts",
"js"
],
"watch": [
"source/server/dist"
]
}
}