-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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": "selfnetfs",
"version": "1.0.3",
"description": "selfnetfs",
"files": [
"dist"
],
"main": "dist/browser/index.js",
"types": "dist/browser/index.d.ts",
"scripts": {
"build": "tsc && webpack",
"start": "ts-node --project tsconfig.server.json server/index.ts",
"www": "cd example && python3 -m http.server 4001",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Keith <[email protected]>",
"repository": "https://github.com/vorble/selfnetfs",
"keywords": [
"file",
"storage"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/uuid": "^8.3.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.0",
"typescript": "^4.1.2",
"uuid": "^8.3.1",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
}
}