-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.66 KB
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
{
"name": "nodejs-typescript-project-template",
"version": "1.0.0",
"main": "dist",
"repository": "https://github.com/devzolo/nodejs-typescript-project-template.git",
"author": "Raphael-ZoLo <zolotorevsky@gmail.com>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "rimraf dist && swc src -d dist --source-maps inline",
"start": "node -r @swc-node/sourcemap-support dist/index.js",
"dev": "nodemon --legacy-watch src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@swc-node/register": "^1.6.1",
"@swc-node/sourcemap-support": "^0.3.0",
"@swc/cli": "^0.1.61",
"@swc/core": "^1.3.35",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
}
}