-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "yalantis-node-school",
"version": "1.0.0",
"description": "Test Assignment for Yalantis Node.js School",
"main": "dist/index.js",
"engines": {
"node": "14.13.1"
},
"scripts": {
"eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx src",
"eslint:dump": "eslint --print-config ./.eslintrc.json",
"dotenv": "node ./node_modules/dotenv/lib/main.js",
"build": "tsc",
"start": "ts-node ./dist",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"typeorm:run": "npm run typeorm migration:run",
"typeorm:revert": "npm run typeorm migration:revert"
},
"keywords": [],
"author": "Arina Kiseleva",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"canvas": "^2.8.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"joi": "^17.4.1",
"pg": "^8.7.1",
"typeorm": "^0.2.37",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/formidable": "^1.2.3",
"@types/node": "^16.4.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}