-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "sharex-uploader-server",
"version": "1.0.0",
"description": "simple sharex server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "tsc --build tsconfig.json --w",
"build": "tsc --build tsconfig.json",
"dev": "nodemon ./dist/index",
"start": "node ./dist/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrlivixx/sharex-uploader-server.git"
},
"keywords": [
"sharex"
],
"author": "MrLivixx",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrlivixx/sharex-uploader-server/issues"
},
"homepage": "https://github.com/mrlivixx/sharex-uploader-server#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"fastify": "^3.15.0",
"module-alias": "^2.2.2",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"eslint": "^7.25.0",
"nodemon": "^2.0.7"
}
}