-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "rstorage-panel",
"version": "0.0.1",
"description": "RStorage is an encrypted cloud file storage.",
"main": "src/index.js",
"scripts": {
"start": "electron-rebuild && electron electron.js",
"server": "node src/index.js",
"test": "node tests.js",
"ci-node": "cd rstorage-node && npm start",
"ci-test-linux": "xvfb-run --server-args=\"-screen 0 1280x720x24\" npm-run-all -rp ci-node test",
"ci-test-windows": "npm-run-all -rp ci-node test",
"ci-test-mac": "npm-run-all -rp ci-node test"
},
"keywords": [],
"author": "Robin",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"better-sqlite3": "^7.4.3",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"electron": "^13.2.1",
"electron-rebuild": "^3.1.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"https": "^1.0.0",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"path": "^0.12.7",
"randomstring": "^1.2.1",
"socket.io": "^4.1.3",
"socket.io-stream": "^0.9.1",
"speakeasy": "^2.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"npm-run-all": "^4.1.5",
"testcafe": "^1.15.2"
}
}