-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.56 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
{
"name": "ntb-import",
"version": "1.1.0",
"description": "",
"license": "MIT",
"private": true,
"scripts": {
"build:server": "webpack --config webpack.server.config.js --color",
"build": "run-p -c build:*",
"dist:server": "cross-env NODE_ENV=production webpack --config webpack.server.config.js --color",
"dist": "run-p -c dist:*",
"check": "eslint --cache --fix \"src/**/*.ts\"",
"release": "npm run build",
"versioning": "npx changeset version && npm i --package-lock-only && NEW_VERSION=$(node -p \"require('./package.json').version\") && sed -i \"s/version.*/version = ${NEW_VERSION}/\" gradle.properties"
},
"devDependencies": {
"@enonic-types/lib-common": "^7.14.4",
"@enonic-types/lib-content": "^7.14.4",
"@enonic-types/lib-context": "^7.14.4",
"@enonic-types/lib-event": "^7.14.4",
"@enonic-types/lib-repo": "^7.14.4",
"@item-enonic-types/global": "^7.13.1",
"@item-enonic-types/lib-cron": "^1.1.1",
"@item-enonic-types/lib-http-client": "^3.2.2",
"@types/webpack-env": "^1.18.5",
"browserslist-config-enonic": "^1.0.8",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"file-loader": "^6.2.0",
"glob": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"ramda": "^0.30.1",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"extends browserslist-config-enonic"
]
}