-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 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
{
"name": "bitburner-typescript-template",
"version": "2.0.0",
"scripts": {
"watch:transpile": "tsc -w --preserveWatchOutput",
"watch:local": "node build/watch.js",
"watch:remote": "bitburner-filesync",
"watch:init": "node build/init.js",
"watch:all": "concurrently npm:watch:transpile npm:watch:local npm:watch:remote",
"watch": "npm run watch:init && npm run watch:all",
"test": "jest"
},
"author": "hydroflame, Hoekstraa, based on work by SlyCedix",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-jest": "^29.7.0",
"bitburner-filesync": "^1.1.5",
"chokidar": "^3.5.3",
"concurrently": "^7.4.0",
"eslint": "^8.22.0",
"fast-glob": "^3.2.12",
"jest": "^29.7.0",
"sync-directory": "^5.1.7",
"typescript": "^4.7.4"
}
}