generated from cremalab/app-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.22 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
{
"name": "crema-app-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@popperjs/core": "^2.11.5",
"classnames": "^2.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-focus-lock": "^2.9.1",
"react-popper": "^2.3.0",
"react-scripts": "5.0.1",
"react-transition-group": "^4.4.2",
"web-vitals": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.18.13",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "6.5.10",
"@storybook/addon-essentials": "6.5.10",
"@storybook/addon-links": "6.5.10",
"@storybook/addons": "6.5.10",
"@storybook/builder-webpack5": "6.5.10",
"@storybook/cli": "6.5.10",
"@storybook/manager-webpack5": "6.5.10",
"@storybook/node-logger": "6.5.10",
"@storybook/preset-create-react-app": "4.1.2",
"@storybook/react": "6.5.10",
"@testing-library/cypress": "8.0.3",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "28.1.8",
"@types/node": "16.11.56",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@types/react-transition-group": "^4.4.5",
"change-case": "4.1.2",
"cross-env": "7.0.3",
"cypress": "10.7.0",
"dependency-cruiser": "11.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-jest": "27.0.1",
"eslint-plugin-storybook": "0.6.4",
"husky": "8.0.1",
"husky-add-issue-tracker": "0.1.1",
"hygen": "6.2.8",
"npm-run-all": "4.1.5",
"postcss": "^8.4.16",
"prettier": "2.7.1",
"serve": "14.0.1",
"source-map-explorer": "2.5.2",
"start-server-and-test": "1.14.0",
"typescript": "4.8.2",
"wait-on": "6.0.1",
"webpack": "5.74.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"scripts": {
"start": "react-scripts start",
"start:ci": "run-s build static",
"build": "react-scripts build",
"test": "react-scripts test --testMatch=[ \"**/?(*.)test.ts?(x)\" ]",
"new:component": "hygen component new",
"new:type": "hygen type new",
"new:util": "hygen util new",
"static": "serve -s build -p 5000",
"deps:graph": "depcruise --validate --output-type dot -- src | dot -T svg > dependency-graph.svg",
"deps:report": "depcruise --validate --output-type err-html --output-to dependency-report.html -- src",
"test:ci": "cross-env CI=true run-s test:lint test:deps test:types \"test:unit -- -i\" test:e2e:ci",
"test:deps": "depcruise --validate -- src",
"test:e2e": "cypress run",
"test:e2e:ci": "cross-env CYPRESS_baseUrl=http://localhost:5000 start-server-and-test start:ci http://localhost:5000 \"cypress run --port 5052\"",
"test:lint": "eslint . --ext js,ts,tsx && prettier . --check --loglevel warn",
"test:lint:fix": "eslint . --ext js,ts,tsx --fix && prettier . --write",
"test:playground": "cross-env BABEL_ENV=development start-storybook -p 9009",
"test:playground:build": "build-storybook",
"test:playground:ci": "start-storybook -p 5000 --ci",
"test:playground:smoketest": "start-storybook --smoke-test",
"test:types": "tsc",
"test:unit": "npm run test --",
"test:unit:coverage": "npm run test:unit -- --coverage --watchAll=false",
"test:unit:coverage:watch": "npm run test:unit:coverage -- --watchAll=true",
"test:analyze": "run-s test:analyze:*",
"test:analyze:build": "npm run build",
"test:analyze:explore": "source-map-explorer build/static/js/main.*",
"build-storybook": "build-storybook -s public",
"storybook": "start-storybook -p 6006 -s public",
"prepare": "husky install"
},
"jest": {
"coveragePathIgnorePatterns": [
"src/components/App"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/*.d.ts",
"!node_modules",
"!src/**/?(*.)stories.{ts,tsx}",
"!src/**/?(*.)test.{ts,tsx}",
"!src/**/index.{ts,tsx}",
"!src/types/*",
"!src/reportWebVitals.ts",
"!src/serviceWorker.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}