-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "windowbuilder-forms",
"version": "0.0.4",
"description": "Order dealer forms",
"repository": {
"type": "git",
"url": "https://github.com/unpete/windowbuilder-forms.git"
},
"engines": {
"node": ">=16.13",
"yarn": "^1.22"
},
"keywords": [
"metadata",
"order dealer",
"cad",
"crm",
"window builder",
"windows calculator"
],
"author": "Evgeniy Malyarov <[email protected]> (http://www.oknosoft.ru)",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"bugs": {
"url": "https://github.com/oknosoft/windowbuilder/issues"
},
"homepage": "https://light.oknosoft.ru/",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6"
},
"devDependencies": {
"@babel/cli": "^7.22",
"@babel/core": "^7.22",
"@babel/plugin-transform-react-constant-elements": "^7.22",
"@babel/preset-env": "^7.22",
"@babel/preset-react": "^7.22",
"@babel/runtime": "^7.22",
"babel-plugin-import": "^1.13",
"babel-plugin-react-remove-properties": "^0.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4",
"cross-env": "^7.0",
"md5-file": "^5.0"
},
"main": "./dist/",
"files": [
"dist/**",
"LICENSE",
"LICENSE.ru.md"
],
"scripts": {
"build": "cross-env NODE_ENV=production BABEL_ENV=es babel --config-file ./babel.config.js ./src --out-dir ./dist && node ./copy-files"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"> 5%"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}