-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 974 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
33
34
35
36
37
38
39
40
41
{
"name": "closure-api",
"version": "1.3.2",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint --fix .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "nodemon src/index.ts",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"start": "node dist/index.js"
},
"keywords": [],
"author": "j1nxie",
"license": "MIT or Apache-2.0",
"nodemonConfig": {
"execMap": {
"ts": "node --loader ts-node/esm"
}
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/semver": "^7.5.8",
"eslint": "^8.57.0",
"eslint-plugin-cadence": "github:j1nxie/Cadence",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"jsdom": "^24.0.0",
"node-fetch": "^3.3.2",
"redis": "^4.6.13",
"semver": "^7.6.0"
}
}