-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 938 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 938 Bytes
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
{
"name": "project-2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tailwind build public/assets/css/src/style.css -o public/assets/css/dist/scripts/style.css",
"test": "node ./node_modules/mocha/bin/mocha ./tests/**/*.js",
"run": "node ./server.js",
"watch": "nodemon ./server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/ui": "^0.6.2",
"autoprefixer": "^10.0.1",
"bcryptjs": "^2.4.3",
"chart.js": "^2.9.3",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"express-session": "^1.17.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"postcss": "^8.1.1",
"postcss-cli": "^8.0.0",
"sequelize": "^6.3.5",
"tailwindcss": "^1.8.13"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.10.0",
"mocha": "^8.1.3"
}
}