-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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": "node-swc-template",
"version": "1.0.0",
"description": "A template project that uses swc, node, express, typescript, eslint and prettier to create fast and reliable web applications.",
"keywords": [
"swc",
"node",
"express",
"typescript",
"eslint",
"prettier",
"template"
],
"author": "João Neto <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prestart": "npm run build",
"start": "node dist/index.js",
"clean": "rimraf dist",
"dev": "nodemon",
"prebuild": "npm run clean",
"build": "swc src -d dist",
"lint": "eslint ./src",
"types": "tsc --noEmit"
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@swc/cli": "^0.1.65",
"@swc/core": "^1.4.0",
"@swc-node/register": "^1.8.0",
"@guarapi/eslint-config-guarapi": "^0.1.2",
"@types/express": "^4.17.21",
"@types/node": "^20.11.17",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"prettier": "@guarapi/eslint-config-guarapi/prettierrc.js",
"nodemonConfig": {
"ext": "*.ts",
"exec": "node -r @swc-node/register src/index.ts"
}
}