-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.68 KB
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": "502211-typoteka-3",
"version": "1.0.0",
"description": "Типотека",
"main": "./src/service/service.js",
"scripts": {
"test": "npm run eslint && npm run jest",
"jest": "jest",
"eslint": "eslint --ext .js src/",
"start": "npm run start-servers",
"start-servers": "concurrently \"npm run start-back-server\" \"npm run start-front-server\"",
"start-back-server": "cross-env LOG_LEVEL=error node -r dotenv/config ./src/service/service.js --server",
"start-back-server::debug": "cross-env LOG_LEVEL=info NODE_ENV=development node -r dotenv/config ./src/service/service.js --server",
"start-front-server": "node -r dotenv/config ./src/express/express.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poly-titova/502211-typoteka-3.git"
},
"author": "Титова Полина",
"license": "ISC",
"bugs": {
"url": "https://github.com/poly-titova/502211-typoteka-3/issues"
},
"homepage": "https://github.com/poly-titova/502211-typoteka-3#readme",
"devDependencies": {
"eslint": "8.6.0",
"eslint-config-htmlacademy": "0.6.0",
"jest": "28.1.0",
"nodemon": "2.0.15",
"pino-pretty": "7.6.1",
"sqlite3": "5.0.11",
"supertest": "6.2.3"
},
"dependencies": {
"axios": "0.27.2",
"bcrypt": "5.1.0",
"chalk": "4.1.2",
"concurrently": "7.6.0",
"connect-session-sequelize": "7.1.5",
"cross-env": "7.0.3",
"csurf": "1.11.0",
"dotenv": "16.0.1",
"express": "4.17.2",
"express-session": "1.17.3",
"joi": "17.7.0",
"multer": "^1.4.5-lts.1",
"nanoid": "3.3.3",
"pg": "8.7.3",
"pino": "7.11.0",
"pug": "3.0.2",
"sequelize": "6.21.3"
}
}