-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
{
"name": "tinfoil-hat",
"version": "1.1.5",
"description": "Tinfoil Nodejs Server",
"main": "./src/index.js",
"type": "module",
"scripts": {
"start": "node --experimental-modules ./src/index.js",
"dev": "env DEBUG=tinfoil* nodemon node --experimental-modules ./src/index.js ",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"d:publish:no:cache": "docker build --pull --no-cache --tag vinicioslc/tinfoil-hat:latest . && docker push vinicioslc/tinfoil-hat",
"d:publish": "docker build . && docker tag tinfoil-hat:latest vinicioslc/tinfoil-hat && docker push vinicioslc/tinfoil-hat",
"preinstall": "npx playwright install"
},
"author": "vinicioslc",
"license": "ISC",
"dependencies": {
"basic-ftp": "^5.0.3",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-static": "^1.2.6",
"fast-glob": "^3.2.12",
"form-urlencoded": "^6.1.0",
"json5": "^2.2.3",
"local-devices": "^4.0.0",
"local-ip-address": "^1.0.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"public-ip": "^6.0.1",
"serve-index": "^1.9.1",
"supports-color": "^9.3.1",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"nodemon": "^2.0.20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinicioslc/tinfoil-hat.git"
},
"bugs": {
"url": "https://github.com/vinicioslc/tinfoil-hat/issues"
},
"homepage": "https://github.com/vinicioslc/tinfoil-hat#readme",
"volta": {
"node": "16.20.2",
"npm": "9.8.1"
}
}