forked from nikitaindik/funda-neighbourhoods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.05 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
{
"name": "funda-chrome-extension",
"version": "0.7.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack --config webpack.config.js --env BUILD_MODE=dev",
"build": "webpack --config webpack.config.js --env BUILD_MODE=production",
"test": "webpack --config webpack.config.js --env BUILD_MODE=test && jest --config=tests/jest.config.js",
"test:ci": "npm ci && npm run test",
"release": "rm -rf build && npm run build && ./create-release-zip.sh",
"test:e2e": "jest --config=e2e/jest.config.js",
"test:e2e:xvfb": "export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true && npm ci && npm run build && ls -l -d /github && ./xvfb-run-firefox.sh"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"get-port": "^7.0.0",
"jest": "^29.6.2",
"jest-puppeteer": "^9.0.0",
"prettier": "^3.0.1",
"puppeteer": "^21.0.3",
"puppeteer-core": "^21.0.3",
"typescript": "^5.1.6",
"web-ext": "^7.6.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}