forked from htmlacademy-nodejs/521287-typoteka-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.37 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
60
61
62
63
64
65
66
67
{
"name": "521287-typoteka-3",
"version": "1.0.0",
"description": "Типотека",
"main": "./src/service/service.js",
"_moduleAliases": {
"~": "src"
},
"dependencies": {
"axios": "0.21.1",
"bcrypt": "5.0.1",
"chalk": "4.0.0",
"concurrently": "6.3.0",
"connect-session-sequelize": "7.1.2",
"cors": "2.8.5",
"cross-env": "7.0.3",
"csurf": "1.11.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-session": "1.17.2",
"helmet": "4.6.0",
"joi": "17.4.2",
"multer": "1.4.2",
"nanoid": "3.1.12",
"pg": "8.5.1",
"pino": "6.8.0",
"pug": "3.0.0",
"sequelize": "6.4.0",
"socket.io": "4.4.1"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-htmlacademy": "0.5.2",
"jest": "26.6.3",
"module-alias": "2.2.2",
"nodemon": "2.0.5",
"pino-pretty": "4.3.0",
"sqlite3": "5.0.0",
"supertest": "6.1.1"
},
"scripts": {
"start": "npm run start-all-servers",
"start::debug": "npm run start-all-servers::debug",
"start-all-servers": "concurrently \"npm run start-back-server\" \"npm run start-front-server\"",
"start-all-servers::debug": "concurrently \"npm run start-back-server::debug\" \"npm run start-front-server::debug\"",
"back-server-cli": "cross-env NODE_ENV=production LOG_LEVEL=error node -r dotenv/config ./src/service/service.js",
"back-server-cli::debug": "cross-env NODE_ENV=development LOG_LEVEL=debug nodemon -r dotenv/config ./src/service/service.js",
"start-back-server": "cross-env NODE_ENV=production LOG_LEVEL=error node -r dotenv/config ./src/service/service.js --server",
"start-back-server::debug": "cross-env NODE_ENV=development LOG_LEVEL=debug nodemon -r dotenv/config ./src/service/service.js --server",
"start-front-server": "node -r dotenv/config ./src/express/express.js",
"start-front-server::debug": "nodemon -r dotenv/config ./src/express/express.js",
"eslint": "eslint --ext .js src/",
"jest": "npm run jest",
"test::rest": "jest --watchAll",
"test::eslint": "npm run eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilyasidorchik/521287-typoteka-3.git"
},
"author": "Ilya Sidorchik",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilyasidorchik/521287-typoteka-3/issues"
},
"homepage": "https://github.com/ilyasidorchik/521287-typoteka-3#readme"
}