forked from divkit/divkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "@divkitframework/react",
"version": "1.1.0",
"description": "React binding for DivKit",
"keywords": [
"server-driven-ui",
"ssr",
"web",
"divkit",
"renderer",
"react"
],
"author": "",
"repository": "github:divkit/divkit",
"license": "Apache-2.0",
"files": [
"dist/*",
"typings/*"
],
"main": "./dist/divkit.js",
"types": "./typings/divkit.d.ts",
"scripts": {
"check:ts": "tsc --noEmit",
"check:eslint": "eslint --quiet .",
"build:prod": "rm -rf dist/ && NODE_ENV=production npx webpack-cli --progress",
"prepublishOnly": "cp ../../../LICENSE ./"
},
"browserslist": {
"production": [
"chrome >= 58",
"safari >= 11",
"firefox >= 67"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@divkitframework/divkit": "16.0.0",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"babel-loader": "8.3.0",
"eslint": "7.32.0",
"react": "16.14.0",
"typescript": "4.8.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.0",
"webpack-dev-server": "4.11.1"
},
"peerDependencies": {
"@divkitframework/divkit": "*",
"react": ">= 16"
}
}