forked from lmachens/pw4u
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "pw4u",
"version": "1.0.0",
"description": "Password Manager based on Node.js",
"main": "app.js",
"private": true,
"dependencies": {
"D": "^1.0.0",
"concurrently": "^5.3.0",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inquirer": "^7.3.3",
"mongodb": "^3.6.3"
},
"devDependencies": {
"nodemon": "^2.0.6"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run storybook\"",
"server": "nodemon server.js",
"client": "cd client && npm start",
"storybook": "cd client && npm run storybook",
"build": "cd client && npm run build && npm run build-storybook",
"start": " node server.js",
"postinstall": "cd client && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmachens/pw4u.git"
},
"author": "Leon Machens",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmachens/pw4u/issues"
},
"homepage": "https://github.com/lmachens/pw4u#readme"
}