-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "passvault",
"version": "1.0.0",
"description": "A lightweight password vault",
"main": "src/app.ts",
"repository": "https://github.com/luizpinheiro/passvault",
"author": "Luiz Claudio Pinheiro",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node --transpile-only src/app.ts",
"dev": "ts-node-dev src/app.ts",
"build": "webpack -c webpack.config.js",
"postbuild": "mv build/node-passvault.js build/node-passvault && chmod +x build/node-passvault"
},
"devDependencies": {
"@types/clipboardy": "^2.0.1",
"@types/generate-password": "^1.5.1",
"@types/inquirer": "^7.3.3",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest-dom": "^3.6.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"prettier": "^2.2.1",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.1.2",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"clipboardy": "^2.3.0",
"generate-password": "^1.6.1",
"inquirer": "^8.1.2"
}
}