This repository was archived by the owner on Jul 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.91 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
66
67
68
{
"name": "donote-v-api",
"version": "2.0.0",
"description": "DoNote V API",
"main": "index.js",
"scripts": {
"start": "yarn build || yarn fast-start",
"fast-start": "cross-env NODE_ENV=deploy NODE_PATH=./dist node dist/deploy.js",
"style-test": "standardx \"src/**/*.ts\" && tsc",
"test": "yarn style-test",
"pretty": "prettier --write \"src/**/*.ts\"",
"clear": "rimraf dist",
"build": "tsc",
"docker-build": "docker-compose build && docker-compose up -d",
"dev": "cross-env NODE_PATH=./src NODE_ENV=develop nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node ./src/deploy.ts"
},
"author": "STARTERGATE <32726809+startergate@users.noreply.github.com>",
"license": "ISC",
"dependencies": {
"@startergate/sidts": "^0.0.7",
"cross-env": "^7.0.1",
"dotenv": "^8.2.0",
"graphql": "^15.0.0",
"joi": "^17.2.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^9.0.1",
"md5": "^2.2.1",
"mysql2": "^2.0.1",
"sequelize": "^6.2.3"
},
"repository": "https://github.com/startergate/DoNote-V-API.git",
"devDependencies": {
"@types/koa": "^2.0.51",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.0.42",
"@types/md5": "^2.2.0",
"@types/sequelize": "^4.28.8",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.14.2",
"nodemon": "^2.0.1",
"prettier": "^2.1.1",
"standardx": "^5.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"@types/node": "^14.14.10"
},
"standardx": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020
},
"ignore": [
"src/modules/**/*",
"src/tests/**/*"
],
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended"
]
}
}