-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
116 lines (116 loc) · 3.74 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "fp",
"version": "1.0.0",
"description": "rest api with koa js",
"main": "index.js",
"private": true,
"author": "Danilo Assis",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.14.3",
"@babel/core": "7.14.0",
"@babel/node": "7.14.9",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-export-default-from": "7.12.13",
"@babel/plugin-proposal-export-namespace-from": "7.12.13",
"@babel/plugin-transform-flow-strip-types": "7.16.7",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.14.1",
"@babel/preset-flow": "7.13.13",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.7.7",
"@babel/register": "7.14.5",
"@types/babel__core": "7.1.18",
"@types/babel__generator": "7.6.2",
"@types/babel__template": "7.4.0",
"@types/babel__traverse": "7.11.1",
"@types/bcryptjs": "^2.4.1",
"@types/dotenv-safe": "^8.1.1",
"@types/graphql": "^14.2.2",
"@types/graphql-relay": "^0.6.0",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-convert": "^1.2.0",
"@types/koa-cors": "^0.0.2",
"@types/koa-logger": "^3.1.0",
"@types/koa-multer": "^1.0.0",
"@types/koa-router": "^7.0.37",
"@types/mongoose": "^5.3.7",
"@types/node": "^16.4.11",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-watch": "^7.4.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-okonet": "7.0.2",
"eslint-config-prettier": "^6.0.0",
"eslint-config-shellscape": "3.0.0",
"eslint-import-resolver-lerna": "^1.1.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-import-resolver-webpack": "0.13.1",
"eslint-plugin-cypress": "2.11.3",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-relay": "1.3.2",
"eslint-plugin-typescript": "0.14.0",
"jest": "26.6.3",
"jest-junit": "12.0.0",
"jsonwebtoken": "^8.5.1",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"node-dev": "^7.0.0",
"nodemon": "1.18.9",
"pre-commit": "^1.2.2",
"prettier": "2.3.1",
"typescript": "4.2.4"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn prettier",
"eslint --fix",
"git add"
],
"*.yml": [
"prettier --write",
"git add"
]
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"api": "yarn workspace @fp/api start",
"api:swagger": "yarn w ./packages/api/script/generateSwagger.ts",
"b": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\"",
"build": "yarn build:modules && yarn build:shared && yarn build:types && yarn build:test",
"build:modules": "yarn workspace @fp/modules build",
"build:shared": "yarn workspace @fp/shared build",
"build:types": "yarn workspace @fp/types build",
"build:test": "yarn workspace @fp/test build",
"jest": "jest",
"lint:staged": "lint-staged",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 120",
"server": "yarn workspace @fp/server start",
"w": "yarn b webpackx.ts"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"jest-environment-node": "^26.0.1",
"jest-fetch-mock": "^3.0.3",
"mongodb-memory-server-global": "^6.6.1",
"supertest": "^6.1.3"
}
}