-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
153 lines (153 loc) · 4.86 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "task-app",
"version": "1.0.0",
"private": true,
"homepage": ".",
"license": "AGPL-3.0-only",
"author": "Graasp",
"contributors": [
{
"name": "Graciana Aad",
"email": "[email protected]",
"url": "https://github.com/Gracianaaad"
},
{
"name": "Jérémy La Scala",
"email": "[email protected]",
"url": "https://github.com/swouf"
}
],
"dependencies": {
"@dnd-kit/core": "6.0.8",
"@dnd-kit/sortable": "7.0.2",
"@dnd-kit/utilities": "3.2.1",
"@emotion/react": "~11.11.0",
"@emotion/styled": "~11.11.0",
"@graasp/apps-query-client": "2.0.0-rc.1 ",
"@graasp/sdk": "1.0.0-rc1",
"@graasp/ui": "3.0.0",
"@mui/icons-material": "~5.11.16",
"@mui/lab": "5.0.0-alpha.134",
"@mui/material": "~5.13.3",
"@sentry/browser": "7.54.0",
"@sentry/react": "7.54.0",
"@sentry/tracing": "7.54.0",
"@tanstack/react-query": "^4.29.12",
"@tanstack/react-query-devtools": "^4.29.12",
"file-saver": "2.0.5",
"i18next": "~23.2.0",
"immutable": "4.3.0",
"lodash.isobject": "~3.0.2",
"lodash.isstring": "~4.0.1",
"qs": "~6.11.2",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-i18next": "^13.0.0",
"react-router-dom": "6.11.2",
"react-scripts": "~5.0.1",
"react-toastify": "~9.1.3",
"typescript": "~4.8.4",
"uuid": "~9.0.0"
},
"scripts": {
"start": "env-cmd -f ./.env.local react-scripts -r @cypress/instrument-cra start",
"start:dev": "env-cmd -f ./.env.development react-scripts -r @cypress/instrument-cra start",
"start:test": "env-cmd -f ./.env.test react-scripts -r @cypress/instrument-cra start",
"start:ci": "react-scripts -r @cypress/instrument-cra start",
"build:dev": "env-cmd -f ./.env.development react-scripts build",
"build": "react-scripts build",
"test:cra": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "husky install",
"prettier:write": "prettier {src,cypress}/**/*.{ts,tsx,js,jsx} --write",
"prettier:check": "prettier {src,cypress}/**/*.{ts,tsx,js,jsx} --check",
"hooks:install": "husky install",
"hooks:uninstall": "husky uninstall",
"pre-commit": "yarn prettier:check && yarn lint",
"lint": "eslint .",
"cypress:open": "env-cmd -f ./.env.development cypress open",
"test": "concurrently -k -s first \"yarn start:test\" \"wait-on http://127.0.0.1:3334 && yarn test:ci\" ",
"test:ci": "env-cmd -f ./.env.test cypress run --browser chrome --headless && nyc report --reporter=text --reporter=text-summary",
"cov:report": "open ./coverage/lcov-report/index.html",
"release": "standard-version -a",
"release:first": "standard-version -a --first-release",
"release:minor": "standard-version -a --release-as minor",
"release:major": "standard-version -a --release-as major",
"release:patch": "standard-version -a --release-as patch"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"browser": {
"fs": false,
"os": false,
"path": false,
"stream": false,
"zlib": false
},
"packageManager": "[email protected]",
"release": {
"analyzeCommits": "conventional"
},
"devDependencies": {
"@commitlint/cli": "~17.6.5",
"@commitlint/config-conventional": "~17.6.5",
"@cypress/code-coverage": "3.10.7",
"@cypress/instrument-cra": "1.4.0",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/i18n": "0.13.6",
"@types/jest": "29.5.2",
"@types/lodash.isobject": "^3.0.7",
"@types/lodash.isstring": "^4.0.7",
"@types/node": "20.2.5",
"@types/react": "18.2.13",
"@types/react-beautiful-dnd": "13.1.4",
"@types/react-dom": "18.2.6",
"@types/react-transition-group": "4.4.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"concurrently": "8.1.0",
"cross-env": "7.0.3",
"cypress": "12.13.0",
"env-cmd": "10.1.0",
"eslint": "~8.43.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-config-prettier": "~8.8.0",
"eslint-config-react-app": "~7.0.1",
"eslint-import-resolver-typescript": "~3.5.1",
"eslint-plugin-cypress": "~2.13.0",
"eslint-plugin-import": "~2.27.0",
"eslint-plugin-jsx-a11y": "~6.7.0",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-react-hooks": "~4.6.0",
"husky": "~8.0.3",
"npm-run-all": "~4.1.5",
"nyc": "15.1.0",
"prettier": "~2.8.8",
"pretty-quick": "3.1.3",
"standard-version": "~9.5.0",
"ts-loader": "9.4.3",
"wait-on": "7.0.1"
},
"nyc": {
"all": true,
"include": [
"src/**/*.{js,ts,jsx,tsx}"
],
"exclude": [
"src/setupTests.ts",
"src/**/*.d.ts",
"cypress/*"
]
}
}