-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-ts-seed",
"version": "0.1.0",
"private": true,
"pre-commit": [
"lint",
"test"
],
"scripts": {
"start": "yarn start:dev",
"start:local": "dotenv -e ./src/config/.env.local react-scripts start",
"start:dev": "dotenv -e ./src/config/.env.development react-scripts start",
"start:qa": "dotenv -e ./src/config/.env.qa react-scripts start",
"build": "yarn build:production",
"build:development": "dotenv -e ./src/config/.env.development react-scripts build",
"build:qa": "dotenv -e ./src/config/.env.qa react-scripts build",
"build:stage": "dotenv -e ./src/config/.env.stage react-scripts build",
"build:production": "dotenv -e ./src/config/.env.production react-scripts build",
"test": "dotenv -e ./src/config/.env.test cross-env react-scripts test -- --watchAll=false --env=jsdom --coverage --forceExit --maxWorkers=1 --detectOpenHandles",
"test:watch": "dotenv -e ./src/config/.env.test cross-env react-scripts test -- --watchAll=true --env=jsdom --coverage --forceExit --maxWorkers=1 --detectOpenHandles",
"lint": "tslint -c ./tslint.json 'src/**/*.{ts,tsx}'",
"eject": "react-scripts eject",
"analyze": "source-map-explorer build/static/js/main.* --html > tree.html && google-chrome tree.html",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/registerServiceWorker.ts",
"!src/modules/models/**/*.*",
"!src/**/*.d.ts",
"!src/**/styles.ts",
"!src/modules/state-mgmt/rootState.ts",
"!src/modules/state-mgmt/store.ts",
"!src/modules/state-mgmt/EpicRegistry.ts",
"!src/modules/state-mgmt/ReducerRegistry.ts",
"!src/modules/AppRoot.tsx",
"!src/test/**/*.*",
"!src/**/index.{ts,tsx}",
"!src/stories/*.story.tsx"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
]
},
"dependencies": {
"aphrodite": "^2.3.1",
"bootstrap": "^4.1.3",
"connected-react-router": "^6.4.0",
"cross-env": "^5.2.0",
"pre-commit": "^1.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.0.1",
"react-test-renderer": "^16.8.6",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-observable": "^1.1.0",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@storybook/addon-actions": "^5.0.0",
"@storybook/addon-info": "^5.0.0",
"@storybook/addon-knobs": "^5.0.0",
"@storybook/addon-links": "^5.0.0",
"@storybook/addons": "^5.0.0",
"@storybook/react": "^5.0.0",
"@types/aphrodite": "^0.5.13",
"@types/enzyme": "^3.9.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^4.3.4",
"@types/react-test-renderer": "^16.8.2",
"@types/redux": "^3.6.0",
"@types/redux-devtools-extension": "^2.13.2",
"@types/storybook__addon-actions": "^3.4.2",
"@types/storybook__addon-info": "^4.1.0",
"@types/storybook__addon-knobs": "^4.0.1",
"@types/storybook__addon-links": "^3.3.4",
"dotenv-cli": "^1.4.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest-aphrodite-react": "^2.2.0",
"react-docgen-typescript-loader": "^3.0.1",
"source-map-explorer": "^1.6.0",
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "3.4.5",
"yarn": "1.16.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}