-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "cs-twinks-creator",
"version": "2.0.0",
"private": true,
"scripts": {
"start": "start.bat",
"bootstrap": "ts-node src/bootstrap/bootstrap.ts",
"cleanup": "ts-node src/cleanup/cleanup.ts",
"reconfigure": "ts-node src/reconfigure/reconfigure.ts",
"test": "yarn run test:typescript && yarn run test:eslint",
"test:typescript": "tsc --noEmit",
"test:eslint": "eslint ."
},
"dependencies": {
"chalk": "^4.1.2",
"decompress": "^4.2.1",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/decompress": "^4.2.4",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}