-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
49
50
51
52
53
54
{
"name": "sgridnode",
"version": "0.0.15",
"description": "SgridFramework Node Implementation, provide a lib to init SgridServer",
"main": "build/main.js",
"types": "build/main.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --project tsconfig.json",
"dev": "ts-node-dev --respawn --transpile-only source/sync/index.ts"
},
"exports": {
"./*": {
"types": "./*.d.ts",
"import": "./*.js",
"default": "./*.js",
"require": "./*.js"
}
},
"keywords": [
"SgridFramework",
"typescript",
"node",
"express",
"decorator",
"ioc"
],
"author": "chelizichen",
"license": "ISC",
"dependencies": {
"dayjs": "^1.11.10",
"express": "^4.18.3",
"express-validator": "^7.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint": "^0.8.19",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.2"
}
}