forked from alkem-io/client-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.27 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.27 KB
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
{
"name": "cherrytwist-web",
"version": "0.5.5",
"description": "Cherrytwist client, responsible for managing the shared representation of the ecoverse",
"author": "Cherrytwist Foundation",
"repository": {
"type": "git",
"url": "https://github.com/cherrytwist/Client.Web.git"
},
"private": false,
"license": "EUPL-1.2",
"dependencies": {
"@apollo/client": "^3.2.9",
"@azure/msal-browser": "^2.7.0",
"@sentry/react": "^5.27.6",
"@sentry/tracing": "^5.27.6",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"@types/jest": "^26.0.15",
"@types/node": "^12.19.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.5",
"@types/yup": "^0.29.9",
"axios": "^0.21.0",
"bootstrap": "^4.5.3",
"bootstrap-icons": "^1.1.0",
"clamp-js": "^0.7.0",
"clsx": "^1.1.1",
"cross-env": "^7.0.2",
"dotenv-flow": "^3.2.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"formik": "^2.2.5",
"generate-password": "^1.5.1",
"graphql": "^15.4.0",
"jquery": "^3.5.1",
"node-sass": "^4.14.1",
"popper.js": "^1.16.1",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^17.0.1",
"react-jss": "^10.5.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"react-visibility-sensor": "^5.1.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"typescript": "^4.1.2",
"yup": "^0.31.0"
},
"scripts": {
"prestart": "cross-env NODE_ENV=development gulp buildConfiguration",
"start": "react-scripts start",
"prebuild": "cross-env NODE_ENV=production gulp buildConfiguration",
"build": "react-scripts build",
"pretest": "NODE_ENV=test gulp buildConfiguration",
"test": "react-scripts test",
"eject": "react-scripts eject",
"codegen": "graphql-codegen --config codegen.yml",
"postcodegen": "prettier --write src/generated/*.ts{,x}",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"lint:prod": "tsc --noEmit && cross-env NODE_ENV=production eslint src/**/*.ts{,x}",
"lint:fix": "tsc --noEmit && eslint src/**/*.ts{,x} --fix",
"gulp": "gulp"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "1.19.2",
"@graphql-codegen/typescript": "1.17.11",
"@graphql-codegen/typescript-operations": "1.17.10",
"@graphql-codegen/typescript-react-apollo": "^2.1.1",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-redux": "^7.1.11",
"gulp": "^4.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintIgnore": [
"src/generated/graphql.tsx",
"**/node_modules/**",
"**/build**"
]
}