-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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
55
56
57
58
59
60
{
"name": "ots-share",
"version": "1.0.0",
"description": "A self-hosting app to share secrets only one-time",
"private": true,
"workspaces": ["./packages/*"],
"main": "./build/src/index.js",
"scripts": {
"test": "npm t --ws",
"build": "npm run build --ws",
"lint": "npm run lint --ws && (cd e2e && npm run lint && cd -)",
"prepare": "husky install",
"prestart": "npm run build",
"start": "npm run exec",
"exec": "node ./packages/main/build/server.js",
"preapp:dev:api": "npm run build",
"app:dev:api": "node ./packages/api/build/src/dev.js",
"app:dev:ui": "(cd ./packages/ui/ && npm run start:dev)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpgeeganage/ots-share-app.git"
},
"author": "Ruwan Geeganage",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpgeeganage/ots-share-app/issues"
},
"homepage": "https://github.com/rpgeeganage/ots-share-app#readme",
"dependencies": {
"source-map-support": "0.5.21"
},
"devDependencies": {
"@types/express": "4.17.15",
"@types/jest": "29.2.6",
"@typescript-eslint/eslint-plugin": "5.48.2",
"eslint": "8.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "4.1.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "45.0.2",
"eslint-plugin-unused-imports": "2.0.0",
"jest-playwright-preset": "3.0.1",
"jest": "29.3.1",
"prettier": "2.8.3",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"typescript": "4.9.4",
"husky": "8.0.3",
"lint-staged": "13.1.0"
},
"lint-staged": {
"*.ts": "npm run lint-stage-ts --workspaces",
"*.{js,md}": "npm run lint-stage-others --workspaces"
}
}