-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "class-planner",
"version": "1.0.0",
"description": "Class planner project",
"main": "index.js",
"scripts": {
"build": "npm i && browserify src/public/scripts/index.js -o src/public/scripts/main.js && sass src/scss/main.scss src/public/styles/main.css",
"dev": "nodemon -i src/public/main.js -i src/public/scripts/main.js -e scss,js,json,ejs,env --exec \"browserify src/public/scripts/index.js -o src/public/scripts/main.js && sass src/scss/main.scss src/public/styles/main.css && node src/app.js\"",
"start": "node src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melkadze/class-planner.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/melkadze/class-planner/issues"
},
"homepage": "https://github.com/melkadze/class-planner#readme",
"dependencies": {
"axios": "^0.21.1",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.2",
"express": "^4.17.1",
"heroku-ssl-redirect": "0.0.4",
"luxon": "^1.24.1",
"mongodb": "^3.5.7",
"mongoose": "^5.9.13",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"path": "^0.12.7",
"validator": "^12.2.0"
},
"devDependencies": {
"browserify": "^16.5.2",
"eslint": "^6.8.0",
"nodemon": "^2.0.7",
"sass": "^1.34.1"
}
}