-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "Verses-Node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@tailwindcss/forms": "^0.4.0",
"autoprefixer": "^10.4.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"loading-cli": "^1.1.0",
"mongoose": "^6.0.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7"
},
"devDependencies": {},
"scripts": {
"start": "npm run prod:css && node app.js",
"dev": "npm-run-all -p dev:tailwind dev:run",
"dev:run": "supervisor app.js",
"dev:tailwind": "tailwindcss -i private/style.css -o public/css/style.css --watch",
"prod": "npm-run-all prod:css prod:run",
"prod:run": "node app.js",
"prod:css": "tailwindcss -i private/style.css -o public/css/style.css --minify",
"seed-prod": "cross-env NODE_ENV=production node seeder.js",
"seed-dev": "node seeder.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyanGaudion/Verses-Node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RyanGaudion/Verses-Node/issues"
},
"homepage": "https://github.com/RyanGaudion/Verses-Node#readme"
}