-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "eshaton",
"author": "Yiğit Levent",
"description": "A Degenesis Character Utility Application",
"version": "0.6.2",
"private": true,
"homepage": "https://eshaton.heroku.com",
"repository": {
"type": "git",
"url": "git+https://github.com/yigitlevent/eshaton.git"
},
"bugs": {
"url": "https://github.com/yigitlevent/eshaton/issues"
},
"scripts": {
"build-server": "cd server && npm i && npm run build",
"build-client": "cd client && npm i && npm run build",
"build": "npm run build-server && npm run build-client",
"start": "cd server && npm run start",
"dev-client": "cd client && npm run start",
"dev-server": "tsc-watch --project ./server --outDir ./server/dist --onSuccess \"nodemon ./server/dist/bin/www.js\"",
"dev": "concurrently --kill-others-on-fail \"npm run dev-server\" \"npm run dev-client\""
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.2"
},
"engines": {
"node": "15.3.0",
"npm": "7.0.14"
}
}