-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "covidit",
"version": "1.0.0",
"description": "A website to share aspirations, reflections and appreciations through a post it note with the world",
"main": "./bin/www",
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"dbm:create": "db-migrate create --migrations-dir ./db/migrations --config ./db/database.json",
"dbm:up": "db-migrate up --migrations-dir ./db/migrations --config ./db/database.json",
"dbm:down": "db-migrate down --migrations-dir ./db/migrations --config ./db/database.json",
"dbm:reset": "db-migrate reset --migrations-dir ./db/migrations --config ./db/database.json",
"heroku-postbuild": "npm run dbm:up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alejo4373/covid-it.git"
},
"keywords": [
"post-it",
"sticky",
"notes",
"boards",
"website",
"appreciations",
"aspirations",
"reflection"
],
"author": "@alejo4373",
"license": "MIT",
"bugs": {
"url": "https://github.com/alejo4373/covid-it/issues"
},
"homepage": "https://github.com/alejo4373/covid-it#readme",
"devDependencies": {
"nodemon": "^3.0.2"
},
"dependencies": {
"autoprefixer": "^9.7.6",
"cookie-parser": "~1.4.4",
"db-migrate": "^0.11.9",
"db-migrate-pg": "^1.2.1",
"debug": "~2.6.9",
"express": "~4.18.2",
"morgan": "~1.9.1",
"node-sass-middleware": "^1.1.0",
"pg-promise": "^10.10.1",
"postcss-middleware": "^1.1.4",
"pug": "^3.0.2",
"ws": "^8.14.2"
},
"engines": {
"node": "20.10"
}
}