-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 844 Bytes
/
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
{
"name": "castle",
"packageManager": "[email protected]",
"version": "1.0.0",
"main": "dist/src/index",
"types": "dist/src/index",
"scripts": {
"dev": "yarn build && yarn start",
"start": "node dist/src/index.js",
"lint": "eslint src/*.ts",
"build": "tsc",
"clean": "rm -r dist/*"
},
"devDependencies": {
"@types/node": "~16.11.6",
"@typescript-eslint/eslint-plugin": "~5.7.0",
"@typescript-eslint/parser": "~5.7.0",
"eslint": "~8.4.1",
"eslint-config-prettier": "~8.3.0",
"prettier": "^2.7.1",
"tsutils": "~3.21.0",
"typescript": "~4.5.3"
},
"volta": {
"node": "16.13.0"
},
"dependencies": {
"@types/colors": "^1.2.1",
"colors": "^1.4.0",
"node-fetch": "2"
}
}