-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.57 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": "domain-profiles",
"version": "0.0.0",
"private": true,
"repository": "[email protected]:unstoppabledomains/domain-profiles.git",
"license": "MIT",
"workspaces": [
"server",
"packages/*"
],
"scripts": {
"build": "yarn build:types",
"build:types": "tsc --build packages.build.tsconfig.json",
"clean": "rm -rf packages/**/build",
"copy-package-files": "./scripts/copyPackageFiles.sh",
"dist": "yarn clean && yarn build && yarn copy-package-files",
"format": "prettier -w .",
"lint": "eslint --fix .",
"test": "DOTENV_CONFIG_PATH=./.env.test jest --runInBand",
"test:ci": "yarn test --coverage --ci --no-colors --forceExit --cacheDirectory .jest-cache",
"typecheck": "yarn workspace server run typecheck"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.219",
"@swc/jest": "^0.2.22",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/classnames": "^2.2.11",
"@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"concurrently": "^7.5.0",
"dotenv": "^16.3.1",
"es6-template-strings": "^2.0.1",
"eslint": "^8.22.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-html-reporter": "^0.7.4",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-exports": "^0.8.0",
"eslint-plugin-tss-unused-classes": "^1.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^28.1.2",
"jest-extended": "^4.0.2",
"jest-fetch-mock": "^3.0.3",
"jest-transform-css": "^6.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.6.2",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "2.2.18",
"prettier-plugin-sh": "0.11.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "5.0.4"
},
"optionalDependencies": {
"@next/swc-linux-x64-gnu": "^12.2.5"
},
"packageManager": "[email protected]"
}