forked from micheleriva/krabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.54 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
{
"name": "krabs-monorepo",
"version": "0.1.3",
"description": "Multitenant middleware for Next.js",
"workspaces": {
"packages": [
"packages/docs",
"packages/express-krabs",
"packages/fastify-krabs",
"packages/utils",
"packages/e2e-express",
"packages/e2e-fastify"
]
},
"repository": "https://github.com/MicheleRiva/krabs",
"author": "Michele Riva <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"commit": "cz",
"changelog": "conventional-changelog -p krabs -i CHANGELOG.md -s -r 0",
"dev": "NODE_ENV=dev ts-node ./dev/index.ts",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc.js",
"lint": "eslint --fix .",
"test": "NODE_ENV=test && jest --coverage",
"e2e:express": "yarn workspace e2e-express run e2e-express",
"e2e:fastify": "yarn workspace e2e-fastify run e2e-fastify",
"e2e": "yarn build && yarn e2e:express",
"prepare": "npm run test && npm run build",
"build": "yarn build:express && yarn build:fastify",
"build:express": "tsc packages/express-krabs/index.ts --outDir packages/express-krabs/dist --declarationDir packages/express-krabs/dist --declaration true",
"build:fastify": "tsc packages/fastify-krabs/index.ts --outDir packages/fastify-krabs/dist --declarationDir packages/fastify-krabs/dist --declaration true"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"@types/react": "^17.0.0",
"array-flat-polyfill": "^1.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"codecov": "^3.8.1",
"commitizen": "^4.2.4",
"cypress": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"fastify": "^3.19.2",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"next": "^11.0.1",
"prettier": "^2.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"colors": "^1.4.0"
}
}