-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "@vendhq/reactular",
"version": "1.0.0",
"description": "Use React components in Angular 1",
"repository": {
"type": "git",
"url": "https://github.com/vend/reactular.git"
},
"main": "dist/cjs/reactular.js",
"module": "dist/es/reactular.js",
"types": "dist/es/reactular.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.build.json --outDir dist/cjs --module commonjs",
"lint": "eslint *.tsx",
"test": "jest"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/angular": "^1.8.1",
"@types/angular-mocks": "^1.7.0",
"@types/jest": "^29.5.11",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"angular": "^1.8.2",
"angular-mocks": "^1.8.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-jasmine2": "^29.7.0",
"prettier": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}