-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.67 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
46
47
48
49
50
51
52
{
"name": "iv1201-group6",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon ./bin/www",
"start2": "node server.js",
"dev": "nodemon server.js",
"sequelize:database2:migrate": "sequelize --options-path ./.sequelize-database2 --env database2 db:migrate",
"sequelize:database2:migrate:undo": "sequelize --options-path ./.sequelize-database2 --env database2 db:migrate:undo",
"sequelize:database2:seed:all": "sequelize --options-path ./.sequelize-database2 --env database2 db:seed:all",
"database2:migration:seed:procedure": "npm run sequelize:database2:migrate && npm run sequelize:database2:seed:all",
"test": "jest --forceExit --detectOpenHandles --watchAll=false --maxWorkers=2",
"test:watch": "jest --watch",
"automated:test": "node open_browser.js"
},
"repository": {
"type": "git",
"url": "https://gits-15.sys.kth.se/joalunds/IV1201-Group6.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"bootstrap": "^4.6.0",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"chromedriver": "^89.0.0",
"cookie-parser": "^1.4.5",
"dotenv-cli": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"heroku": "^7.50.0",
"heroku-cli": "^7.0.9",
"mocha": "^8.3.0",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"nodemon": "^2.0.7",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"selenium-webdriver": "^4.0.0-beta.1",
"sequelize": "^6.5.0",
"supertest": "^6.1.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"sequelize-cli": "^6.2.0"
}
}