-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
{
"name": "types-first-ui",
"version": "2.3.1",
"description": "An opinionated framework for building long-lived, maintainable UI codebases",
"main": "./dist/bundle.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"contributors": [
{
"name": "Kevin Saldaña",
"email": "ksaldana@averoinc.com",
"url": "https://github.com/ksaldana1"
},
{
"name": "Erin Noe-Payne",
"email": "enoepayne@averoinc.com",
"url": "https://github.com/autoric"
}
],
"scripts": {
"test": "jest",
"tsc": "tsc --declaration -outDir compiled",
"clean": "rm -rf dist && rm -rf compiled",
"copyDeclarations": "cd compiled && find . -name '*.d.ts' | cpio -pdm ../dist",
"prepare": "npm run clean && npm run tsc && rollup -c && npm run copyDeclarations",
"example:simple-counter": "webpack-dev-server --mode development --config example/simple-counter/webpack.config.js"
},
"peerDependencies": {
"react": "^16.0.0",
"rxjs": "^6.0.0"
},
"dependencies": {
"lodash": "^4.0.0",
"redux-devtools-extension": "^2.0.0",
"redux": "^4.0.0",
"redux-observable": "^1.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.10",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.106",
"@types/react": "^16.3.13",
"@types/reduce-reducers": "^0.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.4",
"lodash": "^4.17.5",
"react": "^16.3.2",
"react-dom": "^16.4.0",
"redux": "^4.0.0",
"rollup": "^0.62.0",
"rollup-plugin-uglify": "^4.0.0",
"rxjs": "^6.3.3",
"ts-jest": "^22.4.6",
"ts-loader": "^4.2.0",
"typescript": "^3.1.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^3.1.4"
},
"license": "Apache-2.0",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"verbose": true,
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation)"
],
"testRegex": "(src|test)/.*\\.test\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}