-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 849 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 849 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
36
37
38
{
"name": "json-server-docker",
"version": "0.0.0-semantically-released",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.0",
"license": "MIT",
"scripts": {
"start": "nodemon server.js",
"build": "rm -rf dist && tsc",
"typecheck": "tsc --noEmit",
"format": "eslint --fix",
"lint": "eslint"
},
"dependencies": {
"@faker-js/faker": "^10.3.0",
"@types/node": "^24.0.0",
"chalk": "^5.2.0",
"json-server": "1.0.0-beta.12",
"lodash-es": "^4.17.21",
"lowdb": "^7.0.0",
"nodemon": "^3.1.0",
"typescript": "^5.8.0",
"zx": "^8.8.5"
},
"devDependencies": {
"@codfish/eslint-config": "^13.1.2",
"eslint": "^10.0.3"
},
"nodemonConfig": {
"ignore": [
"dist/",
"package.json",
"pnpm-lock.yaml"
],
"ext": "js,mjs,ts,json"
}
}