-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "display-logic",
"version": "4.0.0",
"description": "Display logic module for interface",
"directories": {},
"bin": {
"webpack": "./node_modules/webpack/webpack.js"
},
"engines": {
"node": "^18"
},
"scripts": {
"build": "yarn && NODE_ENV=production webpack --mode production --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
"lint": "eslint client/src && sass-lint -v"
},
"repository": {
"type": "git",
"url": "git://github.com/unclecheese/silverstripe-display-logic.git"
},
"keywords": [
"silverstripe",
"module"
],
"author": "Uncle Cheese",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unclecheese/silverstripe-display-logic/issues"
},
"homepage": "https://github.com/unclecheese/silverstripe-display-logic",
"dependencies": {
"jquery": "3"
},
"devDependencies": {
"@silverstripe/webpack-config": "^2.0.0-alpha9",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0"
},
"resolutions": {
"eslint": "^4.6.1"
}
}