-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1.42 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": "silverstripe-maintenance",
"version": "0.0.0",
"description": "Provides information about the packages you have installed in your SilverStripe site",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/bringyourownideas/silverstripe-maintenance.git"
},
"homepage": "https://github.com/bringyourownideas/silverstripe-maintenance",
"bugs": {
"url": "https://github.com/bringyourownideas/silverstripe-maintenance/issues"
},
"author": "Bring Your Own Ideas",
"engines": {
"node": ">=10.x"
},
"scripts": {
"build": "yarn && yarn lint && NODE_ENV=production webpack -p --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && sass-lint client/src",
"lint-js": "eslint client/src",
"lint-js-fix": "eslint client/src --fix",
"lint-sass": "sass-lint client/src"
},
"devDependencies": {
"@silverstripe/eslint-config": "^0.0.6",
"@silverstripe/webpack-config": "^1.0.0",
"expose-loader": "^0.7.4",
"sass-loader": "^6.0.7"
},
"dependencies": {
"babel-polyfill": "6.7.4",
"classnames": "^2.2.5",
"jquery": "^3.5.0",
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"reactstrap": "^8.0.0"
}
}