-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.01 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
55
56
57
58
59
{
"name": "1903875-typoteka-3",
"version": "1.0.0",
"description": "Типотека",
"main": "./src/service/service.js",
"scripts": {
"eslint": "eslint --ext .js src/",
"start-back-server": "cross-env LOG_LEVEL=error NODE_ENV=production nodemon -r dotenv/config ./src/service/service.js --server",
"start-back-server::debug": "cross-env LOG_LEVEL=info NODE_ENV=development nodemon -r dotenv/config ./src/service/service.js --server",
"start-front-server": "nodemon -r dotenv/config ./src/express/express.js",
"start-servers": "concurrently --prefix-colors \"green,blue\" --names \"BACKEND-SERVER,FRONTEND-SERVER\" \"npm run start-back-server::debug\" \"npm run start-front-server\"",
"start": "npm run start-servers",
"fill-db": "cross-env LOG_LEVEL=info NODE_ENV=development nodemon -r dotenv/config ./src/service/service.js --filldb 25",
"test": "npm run eslint && npm run jest",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diselmxx/1903875-typoteka-3.git"
},
"author": "Гурьев Дмитрий",
"license": "ISC",
"bugs": {
"url": "https://github.com/diselmxx/1903875-typoteka-3/issues"
},
"homepage": "https://github.com/diselmxx/1903875-typoteka-3#readme",
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-htmlacademy": "0.6.0",
"jest": "27.4.3",
"nodemon": "2.0.13",
"pino-pretty": "7.3.0",
"sqlite3": "5.0.2",
"supertest": "6.1.6"
},
"dependencies": {
"axios": "0.24.0",
"bcrypt": "5.0.1",
"chalk": "4.1.2",
"concurrently": "7.2.2",
"connect-session-sequelize": "7.1.4",
"cors": "^2.8.5",
"cross-env": "7.0.3",
"csurf": "1.11.0",
"dayjs": "1.11.3",
"dotenv": "14.2.0",
"express": "4.17.1",
"express-session": "1.17.3",
"express-session-custom": "^1.1.3",
"joi": "17.6.0",
"multer": "1.4.2",
"nanoid": "3.1.30",
"pg": "8.7.1",
"pino": "7.5.1",
"pug": "3.0.2",
"sequelize": "6.14.0",
"socket.io": "4.5.1"
}
}