This repository was archived by the owner on Mar 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "scratch-book-platform",
"version": "0.0.1",
"private": true,
"description": "GraphQL Scratch Book backend",
"main": "./src/index.js",
"scripts": {
"start": "ntl -d -o",
"dev": "bash ./config/bin/develop",
"lint": "eslint --cache -c .eslintrc.js --ext .js ecosystem.config.js src/application",
"prisma-deploy": "prisma deploy --env-file variables.env",
"prisma-token": "prisma cluster-token --env-file variables.env",
"prisma-info": "prisma info --env-file variables.env",
"test": "echo \"Error: no test specified\" && exit 1"
},
"ntl": {
"descriptions": {
"dev": "Запуск режима разработки",
"lint": "Линтинг кода проекта",
"prisma-deploy": "Деплой схемы Prisma",
"prisma-info": "Информация о Prisma"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/seneil/scratch-book-platform.git"
},
"keywords": [],
"author": {
"name": "Dmitry Shvalyov",
"url": "http://shvalyov.ru"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/seneil/scratch-book-platform/issues"
},
"homepage": "https://github.com/seneil/scratch-book-platform#readme",
"dependencies": {
"@babel/core": "7.6.4",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/preset-env": "7.6.3",
"@babel/register": "7.6.2",
"bcryptjs": "2.4.3",
"cookie-parser": "1.4.4",
"dotenv": "8.2.0",
"graphql-yoga": "1.18.3",
"jsonwebtoken": "8.5.1",
"module-alias": "2.2.2",
"prisma-binding": "2.3.16",
"prisma-client-lib": "1.34.10"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-import-resolver-module-alias": "github:tenfold/eslint-import-resolver-module-alias",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"ntl": "5.0.0",
"pm2": "4.2.1"
},
"_moduleAliases": {
"application": "./src/application"
}
}