-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "cat-as-a-service",
"version": "1.0.0",
"main": "index.ts",
"repository": "[email protected]:gdsclpu/cat-as-a-service.git",
"author": "Jyotirmoy Bandyopadhyaya [Bravo68] <[email protected]>",
"license": "MIT",
"type": "module",
"private": true,
"devDependencies": {
"@swc/core": "^1.3.23",
"@swc/wasm": "^1.3.23",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"nodemon": "^2.0.22",
"postcss": "^8.4.23",
"prettier": "^2.8.2",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.3"
},
"dependencies": {
"chalk": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"helmet": "^6.1.5",
"mongoose": "^7.1.0",
"morgan": "^1.10.0",
"ts-node": "^10.9.1",
"winston": "^3.8.2"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -x node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm index.ts --signal SIGKILL --ignore node_modules",
"build": "tsc",
"start": "node --es-module-specifier-resolution=node --loader ts-node/esm ./build/index.js",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
}
}