-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "login-forms",
"version": "5.0.0",
"description": "A collection of templates for the CMS login screens",
"engines": {
"node": "^18.x"
},
"scripts": {
"build": "yarn && yarn lint && rm -rf client/dist/* && NODE_ENV=production webpack --mode production --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "yarn && NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
"lint": "stylelint client/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silverstripe/login-forms.git"
},
"author": "SilverStripe Ltd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/silverstripe/login-forms/issues"
},
"homepage": "https://github.com/silverstripe/login-forms#readme",
"dependencies": {
"bootstrap": "^4.6.2",
"jquery": "^3.6.1",
"popper.js": "^1.14.3"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@silverstripe/eslint-config": "^1.3.0",
"@silverstripe/webpack-config": "^2.1.0",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.2",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"resolutions": {
"colors": "1.4.0"
},
"browserslist": [
"defaults"
]
}