-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.57 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.57 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
{
"name": "1819879-typoteka-3",
"version": "1.0.0",
"description": "Типотека",
"main": "./src/service/service.js",
"scripts": {
"start": "cross-env NODE_ENV=production node -r dotenv/config ./src/service/service.js --server",
"start.dev": "cross-env NODE_ENV=development nodemon -r dotenv/config ./src/service/service.js --server",
"start-front-server": "node ./src/express/express.js",
"start-front-server.dev": "nodemon ./src/express/express.js",
"start.dev-all": "start npm run start.dev && start npm run start-front-server.dev",
"test": "npm run eslint && npm run jest",
"eslint": "eslint --ext .js src/",
"jest": "jest",
"generate": "node ./src/service/service.js --generate 1000",
"fill": "node ./src/service/service.js --fill 3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shestakov-rv/1819879-typoteka-3.git"
},
"author": "Shestakov Roman",
"license": "ISC",
"bugs": {
"url": "https://github.com/shestakov-rv/1819879-typoteka-3/issues"
},
"homepage": "https://github.com/shestakov-rv/1819879-typoteka-3#readme",
"devDependencies": {
"@types/jest": "27.4.1",
"eslint": "5.16.0",
"eslint-config-htmlacademy": "0.6.0",
"jest": "27.5.1",
"nodemon": "2.0.15",
"pino-pretty": "7.6.0",
"supertest": "6.2.2"
},
"dependencies": {
"axios": "0.26.1",
"chalk": "4.1.2",
"cross-env": "7.0.3",
"dotenv": "16.0.3",
"express": "4.17.2",
"multer": "1.4.5-lts.1",
"pg": "8.8.0",
"pino": "7.9.2",
"pug": "3.0.2",
"sequelize": "6.28.0"
}
}