-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1014 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1014 Bytes
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
{
"name": "simpler-server",
"version": "0.3.0",
"description": "Simpler is a simple Node.js server, designed to rapidly provide a base to start your server projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/dev.js",
"dev": "ts-node-dev --respawn --transpile-only src/dev.ts",
"lint": "eslint . --ext .ts",
"test": "jest --config jest.config.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:JooLuiz/simpler.git"
},
"keywords": [
"Node Server"
],
"author": "João Luiz de Castro (https://github.com/JooLuiz)",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}