-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "typoteka",
"version": "1.0.0",
"description": "Типотека",
"main": "./src/service/service.js",
"scripts": {
"start": "cross-env NODE_ENV=production node ./src/service/service.js",
"start::debug": "cross-env NODE_ENV=development node ./src/service/service.js",
"start-front-server": "nodemon ./src/express/express.js",
"test": "npm run eslint && npm run jest",
"jest": "jest",
"eslint": "eslint --ext .js src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Artthas/typoteka.git"
},
"author": "Alexander Gnetov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Artthas/typoteka/issues"
},
"homepage": "https://github.com/Artthas/typoteka#readme",
"devDependencies": {
"eslint": "8.16.0",
"eslint-config-htmlacademy": "0.6.0",
"jest": "26.4.2",
"nodemon": "2.0.16",
"pino-pretty": "4.2.1",
"supertest": "4.0.2"
},
"dependencies": {
"axios": "0.20.0",
"chalk": "4.1.2",
"cross-env": "7.0.2",
"express": "4.18.1",
"express-session": "^1.17.3",
"multer": "^1.4.2",
"nanoid": "3.1.3",
"pino": "^6.6.0",
"pug": "3.0.2"
}
}