This repository was archived by the owner on Jul 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
53
54
{
"name": "versity-project",
"version": "1.0.0",
"description": "Versity-project is an project written for 'Software Development Methods' on Wrocław University of Science.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"build": "cd frontend && npm i && npm run build",
"dev": "set DEBUG=* & nodemon src/index.js",
"test": "mocha src/tests/*.js --timeout 5000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JaroslawPokropinski/versity-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JaroslawPokropinski/versity-project/issues"
},
"homepage": "https://github.com/JaroslawPokropinski/versity-project#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"celebrate": "^10.0.1",
"connect-session-sequelize": "^6.0.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"optimist": "^0.6.1",
"pg": "^7.12.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-window": "^1.8.5",
"selenium-webdriver": "^4.0.0-alpha.5",
"sequelize": "^5.19.2",
"swagger-jsdoc": "^3.4.0",
"uuid": "^3.4.0",
"ws": "^7.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"delay": "^4.3.0",
"eslint": "^6.5.1",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"parcel-plugin-workbox": "^0.2.0",
"prettier": "^1.18.2",
"sqlite3": "^4.1.0"
}
}