-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.58 KB
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
{
"name": "stag-dotjs",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"config": {
"port": "8082"
},
"scripts": {
"test": "jest --config ./jest-config.json",
"coverage": "jest --collect-coverage --config ./jest-config.json",
"coverage-open": "open coverage/lcov-report/index.html",
"clear": "jest --clearCache",
"build:dev": "rm -rf dist; webpack --mode=development; cp -r public/* dist",
"build:prod": "rm -rf dist; webpack --mode=production; cp -r public/* dist",
"bk": "webpack --mode=development --env=in=./src/services/customize-handler.js --env=out=customizeHandler.js;",
"lint": "eslint ./",
"s3:config:export:dev": "aws --profile alfred-dev s3 sync dist/configs/ s3://login-popup-dev-configs/public/ --acl public-read",
"s3:config:export:prod": "aws --profile alfred-prod s3 sync dist/configs/ s3://login-popup-prod-configs/public/ --acl public-read"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"css-loader": "^5.2.7",
"eslint": "^7.19.0",
"eslint-plugin-spellcheck": "^0.0.17",
"html-loader": "^1.3.2",
"html-loader-jest": "^0.2.1",
"jest": "^26.6.3",
"js-yaml": "^3.14.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^1.3.4",
"moment": "^2.29.1",
"mustache": "^4.1.0",
"rewire": "^5.0.0",
"sass": "^1.29.0",
"sass-loader": "^10.0.5",
"ss-loader": "^1.0.1",
"webpack": "^5.24.1",
"webpack-cli": "^4.2.0"
}
}