-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "cratesinquire",
"version": "1.0.0",
"description": "crates.io insight and explorer.",
"author": {
"name": "Apisit Ritreungroj",
"email": "[email protected]",
"url": "https://github.com/apskhem"
},
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c && nest build",
"start": "node dist/main",
"dev": "rollup -c -w",
"debug": "nest start --debug --watch",
"dev:server": "nest start --watch",
"lint:scripts": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:scripts:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:styles": "npx stylelint 'src/client/scss/**/*.scss'",
"lint:styles:fix": "npx stylelint 'src/client/scss/**/*.scss' --fix"
},
"dependencies": {
"@nestjs/common": "^8.2.3",
"@nestjs/config": "^1.1.5",
"@nestjs/core": "^8.2.3",
"@nestjs/platform-fastify": "^8.2.3",
"@nestjs/serve-static": "^2.2.2",
"bytes": "^3.1.1",
"color-convert": "^2.0.1",
"d3": "~6.7.0",
"esbuild": "^0.14.5",
"fastify-compress": "^4.0.0",
"fastify-helmet": "^5.3.2",
"fastify-https-redirect": "^1.0.4",
"fastify-static": "^4.5.0",
"node-cache": "^5.1.2",
"node-fetch": "~2.6.6",
"pluralize": "^8.0.0",
"point-of-view": "^5.0.0",
"pug": "^3.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@nestjs/cli": "^8.1.5",
"@nestjs/schematics": "^8.0.5",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/bytes": "^3.1.1",
"@types/color-convert": "^2.0.0",
"@types/d3": "~6.7.5",
"@types/node": "^16.11.12",
"@types/node-fetch": "~2.5.12",
"@types/pluralize": "^0.0.29",
"@types/pug": "^2.0.5",
"@types/sass": "^1.43.1",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.4.1",
"postcss": "^8.4.5",
"rollup": "^2.70.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.44.0",
"source-map-support": "^0.5.21",
"stylelint": "^14.1.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.2"
}
}