-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.35 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
{
"name": "sites-mystique-xwalk",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"import:build": "cd actions/import && rimraf dist/ && webpack",
"import:build:prod": "cd actions/import && rimraf dist/ && webpack --mode=production",
"import:deploy": "node bin/deploy.mjs actions/import/dist/index.js.zip",
"import:serve": "npm-run-all import:build --parallel import:serve:*",
"import:test": "cd actions/import && mocha --spec test/**/*.test.mjs --require test/setup-env.esm.mjs --timeout 10000 --reporter-option maxDiffSize=0",
"import:serve:server": "nodemon -r dotenv/config --inspect actions/import/dist/index.js --watch actions/import/dist",
"import:serve:build": "cd actions/import && webpack ./src/dev-server.js --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/eslint-parser": "^7.26.8",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"openwhisk": "3.21.7",
"rimraf": "^6.0.1",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"zip-webpack-plugin": "^4.0.3"
}
}