This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.07 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
{
"name": "@polygloat/react",
"version": "1.0.0-alpha.5",
"description": "React implementation for polygloat localization framework",
"main": "dist/polygloat-react.umd.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/polygloat/polygloat-react",
"declaration": true,
"directories": {
"lib": "lib",
"dist": "dist"
},
"scripts": {
"build": "webpack --env.mode=production && tsc",
"test": "jest",
"develop": "webpack --env.mode=development --watch"
},
"author": "JanCizmar",
"license": "ISC",
"files": [
"lib/**/*",
"dist/**/*"
],
"resolutions": {
"@types/react": "16.9.55"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.14.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-async-to-generator": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.7.4",
"@polygloat/core": "^1.0.0-alpha.12",
"@polygloat/ui": "file:../../ui",
"@testing-library/dom": "^7.24.5",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.1",
"@types/jest": "^26.0.14",
"@types/node": "^13.9.2",
"@types/react": "16.9.55",
"@types/react-dom": "^16.9.9",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"babel-plugin-transform-typescript-metadata": "^0.2.2",
"jest": "^26.5.2",
"jest-fetch-mock": "^3.0.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.3",
"source-map-loader": "^1.1.0",
"ts-jest": "^26.4.1",
"ts-loader": "^6.2.2",
"tslint": "~5.15.0",
"tsyringe": "^4.0.1",
"typescript": "^3.5.3",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10"
}
}