-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.2 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
40
41
42
43
44
45
46
{
"name": "nsfwjs-docker",
"version": "1.0.0",
"type": "module",
"exports": "./dist/server.js",
"license": "MIT",
"scripts": {
"dev:swc": "swc src --watch --copy-files --out-dir dist",
"dev:server": "node --watch dist/server.js",
"start": "node dist/server.js",
"build": "swc src --copy-files --out-dir dist",
"lint": "rome check .",
"lint:fix": "rome format . --write"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"dependencies": {
"@fastify/multipart": "^7.4.0",
"@tensorflow/tfjs-node": "^4.2.0",
"fastify": "^4.12.0",
"nsfwjs": "^2.4.2",
"rome": "^11.0.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.29",
"@types/sharp": "^0.31.1",
"chokidar": "^3.5.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"cz-emoji": "^1.3.2-canary.2",
"json-schema-to-ts": "^2.6.2",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.4"
}
}