-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "valheim",
"version": "0.1.0",
"bin": {
"minecraft": "lib/valheim.js"
},
"scripts": {
"src:build": "cd src && npm run build",
"build": "tsc",
"build:all": "npm run src:build && npm run build",
"postbuild": "npm run lint",
"lint": "eslint --ext .js --ext .ts .",
"lint:fix": "eslint --fix --ext .js --ext .ts .",
"postclean": "cd src && npm run clean",
"clean": "rm -rf build",
"watch": "tsc -w",
"cdk": "cdk",
"create": "node src/dist/discord-js/deploy-commands/run.js"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.1",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"aws-cdk-lib": "^2.144.0",
"constructs": "^10.3.0",
"cdk-valheim": "^0.0.26"
}
}