forked from baizeteam/baize-quick-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 811 Bytes
/
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
{
"name": "baize-quick-study",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env START_ENV=dev esno start.ts",
"build": "cross-env START_ENV=build esno start.ts",
"server": "nodemon ./api/index.js",
"format": "prettier --write . .prettierrc",
"lint-staged": "lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.12.11",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"lint-staged": "^15.2.2",
"mockjs": "^1.1.0",
"nodemon": "^3.1.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=16.16.0"
},
"lint-staged": {
"**/**/*.{js,ts,jsx,tsx,json}": "prettier --write"
},
"dependencies": {
"esno": "^4.7.0",
"express": "^4.19.2"
}
}