-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.74 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "intrvl",
"version": "0.0.1",
"description": "Full-stack app to create interval timers",
"main": "server.js",
"scripts": {
"start": "npm run start:dev",
"start:dev": "nodemon . --ignore ./public -e .js,.jsm,.json",
"start:prod": "NODE_ENV=production node index.js",
"tailwind:watch": "npx tailwindcss -i ./public/src/input.css -o ./public/dist/output.css --watch",
"test": "NODE_ENV=test mocha ./test/*",
"test:watch": "NODE_ENV=test mocha ./test/* --watch",
"pretest": "NODE_ENV=test npm run db:reset",
"db:reset": "sequelize db:drop && sequelize db:create && sequelize db:migrate",
"db:create:test": "NODE_ENV=test sequelize db:create"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saulthebear/intrvl.git"
},
"author": "Stefan Vosloo",
"license": "MIT",
"bugs": {
"url": "https://github.com/saulthebear/intrvl/issues"
},
"homepage": "https://github.com/saulthebear/intrvl#readme",
"dependencies": {
"@google-cloud/text-to-speech": "^3.4.0",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.3",
"flowbite": "^1.4.7",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"rowdy-logger": "^1.0.2",
"sequelize": "^6.20.0",
"sequelize-cli": "^6.4.1",
"winston": "^3.7.2"
},
"devDependencies": {
"@faker-js/faker": "^7.1.0",
"browser-sync": "^2.27.10",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3",
"tailwindcss": "^3.0.24"
}
}