-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 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
{
"name": "GoGamify-Students",
"version": "1.0.0",
"description": "GoGamify for Students PWA",
"main": "tailwind.config.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"vite": "^2.8.4"
},
"scripts": {
"start": "node index.js",
"watch-src": "npx tailwindcss -i ./src/css/input.css -o ./src/css/style.css -w",
"minify-src": "npx tailwindcss -i ./src/css/input.css -o ./src/css/style.css -m",
"watch-public": "npx tailwindcss -i ./public/input.css -o ./public/tailwind.css -w",
"watch-template": "npx tailwindcss -i ./public/template/input-template.css -o ./public/template/template.css -w",
"dev": "concurrently --kill-others \"npm run watch-public\" \"nodemon app\"",
"heroku-restart": "heroku restart -a gogamify-education"
},
"author": "The GoGamify Team",
"license": "ISC",
"keywords": [],
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"express-fileupload": "^1.2.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.2",
"live-server": "^1.2.2",
"lodash": "^4.17.21",
"mammoth": "^1.4.21",
"method-override": "^3.0.0",
"mongoose": "^6.2.4",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"passport": "^0.5.2",
"passport-local": "^1.0.0"
}
}