-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1007 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": "sharex-api",
"description": "",
"version": "1.2.1",
"main": "index.ts",
"scripts": {
"start": "npx tsx index.ts",
"prettier:check": "npx prettier --check index.ts src/",
"prettier": "npx prettier --write index.ts src/",
"copy-web-data": "npx ncp src/views/ dist/src/views/ && npx ncp src/public/ dist/src/public/",
"lint:check": "npx eslint index.ts src/",
"lint": "npx eslint --fix index.ts src/",
"build": "npx tsc --build && npm run copy-web-data"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"ncp": "^2.0.0",
"prettier": "^3.2.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}