-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "ninjagamer",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "18.12.0"
},
"scripts": {
"start": "node app.js",
"build:css": "postcss src/css/input.css -o public/styles/main.css --watch",
"build:pro": "tailwindcss src/css/input.css -o public/styles/main.css --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/sequelize": "^4.28.14",
"autoprefixer": "^10.4.13",
"jest": "^29.2.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-session-sequelize": "^7.1.5",
"csrf": "^3.1.0",
"deasync": "^0.1.28",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"phone": "^3.1.29",
"sequelize": "^6.25.3"
}
}