-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.64 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": "pass-vault",
"version": "0.5.3",
"description": "A command line app for managing secrets.",
"keywords": [
"password",
"cli",
"nodejs",
"typescript",
"react"
],
"files": [
"dist"
],
"main": "dist/cli.js",
"bin": {
"pass": "dist/cli.js"
},
"scripts": {
"test": "jest",
"dev": "concurrently \"parcel watch src/server.ts --target node\" \"nodemon dist/server.js\" \"parcel watch src/client/index.html -d dist/client\"",
"build": "concurrently \"parcel build src/cli.ts --target node --no-source-maps\" \"parcel build src/server.ts --target node --no-source-maps\" \"parcel build src/client/index.html -d dist/client --no-source-maps\""
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"open": "^6.4.0",
"simple-encryptor": "^3.0.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.8.5",
"@types/react-router-dom": "^4.3.4",
"antd": "^3.21.4",
"concurrently": "^4.1.2",
"copy-to-clipboard": "^3.2.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-shebang": "^1.2.8",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"author": {
"name": "Tianci He",
"url": "https://github.com/tiancihe"
},
"homepage": "https://github.com/tiancihe/pass-vault",
"bugs": {
"url": "https://github.com/tiancihe/pass-vault/issues"
},
"license": "MIT"
}