-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
{
"name": "password-keeper",
"version": "1.0.0",
"description": "A password management app for organizations.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"local": "./node_modules/.bin/nodemon -L --ignore public/",
"db:reset": "node bin/resetdb.js",
"build": "postcss styles/tailwind.css -o public/styles/tailwind.css"
},
"author": "Teamwork",
"contributors":[
{"name": "Brady Blair",
"url": "https://github.com/babs20"
},
{"name": "Rebecca Chen",
"url": "https://github.com/rchen1996"
}
],
"license": "ISC",
"dependencies": {
"aes256": "^1.1.0",
"autoprefixer": "^10.2.4",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cookie-session": "^1.4.0",
"dotenv": "^2.0.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"pg": "^6.4.2",
"pg-native": "^3.0.0",
"postcss": "^8.2.5",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"nodemon": "^1.19.1"
}
}