-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.43 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
{
"name": "@grammarly/embrace",
"version": "0.1.51",
"description": "Typesafe, declarative, and composable UI engine on top of React and Focal",
"main": "cjs/index.js",
"module": "esm/index.js",
"es2015": "esm2015/index.js",
"types": "esm2015/index.d.ts",
"files": [
"cjs",
"esm",
"esm2015"
],
"repository": {
"type": "git",
"url": "https://github.com/grammarly/embrace.git"
},
"author": "Grammarly, Inc.",
"license": "Apache-2.0",
"scripts": {
"dev": "yarn tsc -p tsconfig.build.json --module es2015 --target es5 --outDir esm2015 -w",
"build": "yarn build:cjs && yarn build:esm && yarn build:esm2015",
"build:cjs": "yarn tsc -p tsconfig.build.json --module commonjs --target es5 --outDir cjs",
"build:esm": "yarn tsc -p tsconfig.build.json --module es2015 --target es5 --outDir esm",
"build:esm2015": "yarn tsc -p tsconfig.build.json --module es2015 --target es2015 --outDir esm2015",
"lint": "eslint './**/*.ts?(x)'",
"test": "jest"
},
"dependencies": {
"@grammarly/focal": "^0.8.5",
"fp-ts": "2.9.5",
"ts-toolbelt": "6.9.9"
},
"peerDependencies": {
"react": ">= 16.11.0 < 17.0.0-0",
"rxjs": ">= 6.3.3 < 7.0.0-0"
},
"devDependencies": {
"@grammarly/tslint-config": "0.6.0",
"@types/enzyme": "3.1.15",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "29.2.3",
"@types/react": "16.8.2",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/eslint-plugin-tslint": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.3.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "6.7.0",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-nibble": "5.1.0",
"eslint-plugin-fp-ts": "0.3.0",
"eslint-plugin-functional": "4.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "1.2.1",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-todo-plz": "1.2.1",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"rxjs": "6.5.3",
"ts-jest": "29.1.1",
"tslib": "^2.3.0",
"tslint": "5.18.0",
"tslint-sonarts": "^1.9.0",
"typescript": "5.2.2"
},
"resolutions": {
"@types/node": "18.11.9"
},
"packageManager": "[email protected]"
}