-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 2.79 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
{
"name": "xstate-sample-architecture",
"version": "0.1.0",
"private": true,
"homepage": "https://rjdestigter.github.io/xstate-sample-kit",
"dependencies": {
"@craco/craco": "^5.6.3",
"@rmwc/button": "^5.7.2",
"@rmwc/circular-progress": "^5.7.2",
"@rmwc/icon": "^5.7.2",
"@rmwc/linear-progress": "^5.7.2",
"@rmwc/textfield": "^5.7.2",
"@rmwc/top-app-bar": "^5.7.2",
"@rmwc/typography": "^5.7.2",
"@types/i18next-browser-languagedetector": "^3.0.0",
"@types/i18next-xhr-backend": "^1.4.2",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^4.4.2",
"@xstate/react": "^0.8.1",
"cross-env": "^7.0.0",
"fp-ts": "^2.4.3",
"history": "^5.0.0-beta.5",
"i18next": "^19.1.0",
"io-ts": "^2.1.0",
"node-sass": "^4.13.1",
"observable-hooks": "^2.2.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-i18next": "^11.3.1",
"react-scripts": "^3.4.0",
"rxjs": "^6.5.4",
"styled-components": "^5.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2",
"xstate": "^4.7.7"
},
"scripts": {
"start": "react-scripts start",
"start:e2e": "cross-env PORT=7000 REACT_APP_E2E=on react-scripts start",
"craco:start": "craco start",
"build": "react-scripts build",
"test": "react-scripts test",
"e2e": "jest -c jest.config.js",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"typedoc": "npx typedoc --tsconfig ./tsconfig.json",
"predeploy": "npm run build && npm run typedoc",
"deploy": "gh-pages -d build"
},
"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": {
"@storybook/addon-a11y": "^5.3.14",
"@storybook/addon-actions": "^5.3.12",
"@storybook/addon-links": "^5.3.12",
"@storybook/addons": "^5.3.12",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.3.12",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/node": "^12.12.26",
"@types/puppeteer": "^2.0.0",
"@xstate/test": "^0.3.0",
"gh-pages": "^2.2.0",
"jest-puppeteer": "^4.4.0",
"puppeteer": "^2.1.1",
"ts-jest": "^25.2.0",
"typedoc": "^0.16.10",
"typedoc-plugin-external-module-name": "^3.0.0"
},
"jest": {
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
}
}
}