-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.68 KB
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
55
{
"name": "filecan",
"version": "3.0.2",
"description": "node.js file hoster",
"main": "src/server/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client-build": "webpack --mode production --config webpack.config.js --progress",
"client-build-dev": "webpack --mode development --config webpack.config.js --progress",
"server-build": "tsc -p tsconfig.json",
"server-build-dev": "tsc -p tsconfig.dev.json",
"build": "npm run clean && npm run server-build && npm run client-build",
"build-dev": "npm run clean && npm run server-build-dev && npm run client-build-dev",
"start": "node ./build/server/index.js",
"quick": "npm run build && npm run start",
"clean": "rm -rf ./build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arkanic/filecan.git"
},
"author": "Arkanic",
"license": "ISC",
"bugs": {
"url": "https://github.com/Arkanic/filecan/issues"
},
"homepage": "https://github.com/Arkanic/filecan#readme",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/multer": "^2.2.0",
"css-loader": "^7.1.4",
"html-webpack-plugin": "^5.6.8",
"mini-css-extract-plugin": "^2.10.2",
"terser-webpack-plugin": "^5.6.1",
"ts-loader": "^9.6.2",
"typescript": "^6.0.3",
"webpack": "^5.109.2",
"webpack-cli": "^7.2.2"
},
"dependencies": {
"bcrypt": "^6.0.0",
"better-sqlite3": "^13.0.3",
"cors": "^2.8.6",
"express": "^5.2.1",
"knex": "^3.3.0",
"multer": "^2.2.0",
"qr-creator": "^1.0.0",
"yaml": "^2.9.0"
},
"allowScripts": {
"bcrypt@6.0.0": true,
"better-sqlite3@13.0.3": true
}
}