-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.73 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
{
"name": "cds-theme",
"version": "0.0.1",
"description": "Build for CDS Theme",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"setup": "npm ci",
"build:connector": "npm run clean:connector && webpack --config ./theme/build/connector.config.js --color && npm run clean:js",
"build:front-page": "npm run clean:front-page && webpack --config ./theme/build/front-page.config.js --color && npm run clean:js",
"build": "npm run build:connector && npm run build:front-page",
"build-dev": "npm run build",
"build-prod": "npm run build",
"clean:js": "rimraf resources/web/cds/gen/main.js",
"clean:connector-css": "rimraf resources/web/cds/gen/Connector-all.css resources/web/cds/gen/images",
"clean:connector": "npm run clean:js && npm run clean:connector-css",
"clean:front-page-css": "rimraf resources/web/cds/gen/application.css",
"clean:front-page": "npm run clean:js && npm run clean:front-page-css",
"clean": "npm run clean:connector && npm run clean:front-page"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LabKey/cds.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/LabKey/cds/issues"
},
"homepage": "https://github.com/LabKey/cds#readme",
"dependencies": {},
"devDependencies": {
"bourbon": "4.2.7",
"bourbon-neat": "4.0.0",
"compass-mixins": "0.12.11",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.0.0",
"mini-css-extract-plugin": "2.6.0",
"resolve-url-loader": "5.0.0",
"rimraf": "3.0.2",
"sass": "1.52.1",
"sass-loader": "13.0.0",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
}
}