-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.89 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
50
51
52
{
"name": "search_and_replace",
"version": "2.3.0",
"resolutions": {
"author": "Chris Taylor <cjtaylor38@gmail.com>"
},
"module": "true",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"build:dev": "webpack --config webpack/webpack.dev.js",
"release": "zip -r ./releases/search_and_replace_$npm_package_version.zip ./dist",
"start": "light-server --no-reload -s . -p 9000 -w \"**/*.html,**/*.css,**/*.js,**/*.gz\"",
"cypress:open": "npx cypress open --project src",
"cypress:run": "npx cypress run --project src",
"e2e:docker:down": "docker compose --file ./docker/docker-compose.wordpress.yml down --volumes --remove-orphans",
"e2e:docker:up": "docker compose --file ./docker/docker-compose.wordpress.yml up -d"
},
"devDependencies": {
"@eslint/eslintrc": "^2.0.3",
"@html-eslint/eslint-plugin": "^0.22.0",
"@html-eslint/parser": "^0.22.0",
"@types/chrome": "*",
"@types/jest": "^27.0.2",
"@types/node": "^20.11.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"copy-webpack-plugin": "^9.0.1",
"cypress": "^13.6.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-absolute-imports-only": "^1.0.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"glob": "^7.1.6",
"jest": "^27.5.1",
"light-server": "^2.9.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^27.0.5",
"ts-loader": "^8.0.0",
"typescript": "^4.4.3 ",
"webpack": "^5.76.2",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}