-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.41 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
123
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"watch": "webpack --watch",
"start": "webpack-dev-server --config webpack.dev.js",
"build": "tslint --project tsconfig.json && jest --ci --runInBand && rollup -c rollup.lib.js"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0-beta.40",
"@types/classnames": "^2.2.3",
"@types/enzyme": "^3.1.9",
"@types/invariant": "^2.2.29",
"@types/jest": "^22.1.3",
"@types/jsdom": "^11.0.4",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-intl": "^2.3.5",
"autoprefixer": "^8.0.0",
"awesome-typescript-loader": "^3.5.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-modules-web-compat": "^1.1.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"caniuse-lite": "^1.0.30000810",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.18",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"html-webpack-plugin": "^2.30.1",
"identity-obj-proxy": "^3.0.0",
"intl": "^1.2.5",
"intl-locales-supported": "^1.0.0",
"jest": "^22.4.2",
"jsdom": "^11.6.2",
"lerna": "^2.9.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.1",
"postcss-modules": "^1.1.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-intl": "^2.4.0",
"rollup": "^0.56.3",
"rollup-plugin-postcss": "1.2.8",
"rollup-plugin-typescript": "^0.8.1",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.2",
"ts-jest": "^22.4.0",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.7.2",
"typescript-lit-html-plugin": "^0.2.0",
"typescript-snapshots-plugin": "^1.1.0",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.11.0",
"webpack-dev-server": "^2.11.2",
"webpack-merge": "^4.1.2",
"whatwg-fetch": "^2.0.3"
},
"jest": {
"collectCoverageFrom": [
"packages/**/src/**/*.{ts,tsx}",
"!**/node_modules/**",
"!packages/react-intl-namespaces/src/types.ts",
"!packages/**/dist/**",
"!**/*.d.ts"
],
"coverageDirectory": "coverage",
"setupFiles": [
"<rootDir>/config/polyfills.js",
"<rootDir>/config/setup.js"
],
"testEnvironment": "jsdom",
"verbose": true,
"globals": {
"__DEV__": true,
"ts-jest": {
"tsConfigFile": "tsconfig.test.json",
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"css"
],
"modulePathIgnorePatterns": [
"<rootDir>/packages/react-intl-namespaces.*/dist/"
],
"modulePaths": [
"<rootDir>/packages/"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"packages/**/__tests__/*.(ts|tsx|js)|**/*.test.(ts|tsx|js)"
]
},
"repository": "https://github.com/maciejw/react-intl-namespaces.git",
"author": "Maciej Warszawski <[email protected]>",
"resolutions": {
"@types/react": "16.0.38"
}
}