-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
43
44
45
46
{
"name": "awms-keycloak-configuration-tool",
"version": "1.0.0",
"description": "",
"main": "server/index.ts",
"bin": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"server": "nodemon --watch 'server/**/*.ts' --exec 'ts-node' server/index.ts",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "tsc && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codox/AWMS-Hyperlogic-Keycloak.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Codox/AWMS-Hyperlogic-Keycloak/issues"
},
"homepage": "https://github.com/Codox/AWMS-Hyperlogic-Keycloak#readme",
"dependencies": {
"axios": "^1.7.2",
"concurrently": "^8.2.2",
"express": "^4.19.2",
"nodemon": "^3.1.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"pkg": {
"assets": [
"client/build/**/*",
"server/**/*.ts"
],
"scripts": [
"dist/**/*.js"
]
}
}