-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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
{
"name": "suke",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"prepack": "yarn workspaces foreach run yarn clean && yarn compile",
"build": "cross-env NODE_ENV=production yarn workspaces foreach run build",
"start": "yarn workspaces foreach run start",
"start:server": "yarn workspace @suke/suke-server start",
"deploy:server": "cross-env NODE_ENV=production yarn start:server",
"start:web": "yarn workspace @suke/suke-web start",
"lint": "eslint .",
"prettier": "yarn workspaces foreach run prettier --config .prettierrc 'src/**/*.ts' --write",
"clean": "yarn workspaces foreach run clean",
"test": "jest && yarn test:web",
"test:web": "yarn workspace @suke/suke-web test",
"fix-ts-refs": "utils-typescript-references"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"mini-css-extract-plugin": "1.6.2",
"react-error-overlay": "6.0.9"
},
"devDependencies": {
"@goldstack/utils-typescript-references": "^0.1.8",
"@testing-library/jest-dom": "^5.14.1",
"@types/eslint": "^7",
"@types/jest": "^27.0.2",
"@types/prettier": "^2",
"@types/react-test-renderer": "^17",
"@types/testing-library__jest-dom": "^5",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.12.0",
"@yarnpkg/pnpify": "^3.0.1-rc.5",
"@zerollup/ts-transform-paths": "^1.7.18",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-react-app": "^7.0.0",
"jest": "^27.2.2",
"jest-docblock": "^27.0.6",
"jest-runner": "^27.2.2",
"jest-runner-groups": "^2.1.0",
"jest-watch-yarn-workspaces": "^1.1.0",
"lerna": "^4.0.0",
"postcss": "^8.4.5",
"prettier": "^2.4.1",
"react-error-overlay": "6.0.9",
"tailwindcss": "latest",
"ts-jest": "^27.0.5",
"tsconfig-paths": "^3.14.0",
"tscpaths": "^0.0.9",
"ttypescript": "^1.5.13",
"typescript": "^4.6.2"
},
"dependencies": {
"@ffprobe-installer/ffprobe": "^1.4.1",
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.7.4",
"@types/bcryptjs": "^2.4.2",
"@types/node": "^17.0.18",
"@types/react-notifications-component": "^3.1.1",
"bcryptjs": "^2.4.3",
"cross-env": "^7.0.3",
"fluent-ffmpeg": "^2.1.2",
"rate-limiter-flexible": "^2.3.6",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.7.0",
"typedi": "^0.10.0",
"typeorm": "^0.2.41"
}
}