generated from tsedio/tsed-example-formio
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.73 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
{
"name": "@tsed/root",
"version": "1.12.3",
"description": "",
"author": "Romain Lenzotti",
"repository": "https://github.com/tsedio/tsed-api",
"private": true,
"scripts": {
"clean": "monorepo clean workspaces",
"configure": "monorepo ci configure",
"test": "lerna run test --stream",
"test:e2e": "lerna run test:e2e",
"test:front": "lerna run test --scope=@tsed/backoffice --scope=@tsed/shared --stream",
"test:backoffice": "lerna run test --scope=@tsed/backoffice --stream",
"test:server": "lerna run test --scope=@tsed/server --stream",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"prettier": "lerna run prettier:fix",
"build": "lerna run build --stream",
"build:backoffice": "lerna run build --scope=@tsed/backoffice --stream",
"build:server": "lerna run build --scope=@tsed/server --stream",
"start": "lerna run start --stream --parallel",
"start:backoffice": "lerna run start --scope=@tsed/backoffice --stream",
"start:server": "lerna run start --scope=@tsed/server --stream",
"start:storybook": "lerna run start:storybook --scope=@tsed/storybook --stream",
"start:prod": "pm2-runtime start processes.config.js --env production",
"docker:build": "yarn build && docker-compose build",
"release": "semantic-release",
"prepare": "is-ci || husky install"
},
"dependencies": {
"ajv": "8.5.0",
"is-ci": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@tsed/monorepo-utils": "1.18.2",
"@craco/craco": "6.1.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/classnames": "2.2.11",
"@types/file-saver": "^2.0.1",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/node": "^14.14.20",
"@types/prop-types": "15.7.3",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-redux": "7.1.16",
"@types/react-router": "5.1.11",
"@types/react-router-dom": "5.1.7",
"@types/react-table": "7.7.9",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@tsed/react-formio": "1.10.13",
"@tsed/react-formio-container": "1.10.13",
"@tsed/redux-utils": "1.10.13",
"@tsed/tailwind-formio": "1.10.13",
"lerna": "3.22.1",
"lodash": "4.17.20",
"file-saver": "2.0.5",
"formiojs": "4.14.1",
"choices.js": "10.1.0",
"tooltip.js": "1.3.3",
"classnames": "2.2.6",
"connected-react-router": "6.9.1",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.5",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"react-table": "7.6.3",
"react-toastify": "7.0.3",
"react-use": "17.1.1",
"redux-thunk": "2.3.0",
"web-vitals": "^0.2.4",
"cross-env": "7.0.3",
"eslint-config-prettier": "7.2.0",
"eslint-config-standard": "16.0.2",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-standard": "5.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.4",
"prettier": "2.5.1",
"semantic-release": "17.3.9",
"react-scripts": "4.0.1",
"webpack": "4.44.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"packages/*/**/webpack-dev-server",
"**/babel-loader",
"**/babel-jest"
]
},
"monorepo": {
"productionBranch": "master",
"developBranch": "master",
"npmAccess": "public",
"skipNpmPublish": true
}
}