-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
45 lines (45 loc) · 1.48 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
{
"name": "wagtail-tag-manager",
"version": "2.0.0",
"description": "A Wagtail add-on for managing tags.",
"main": "webpack.config.js",
"browserslist": "> 0.25%, not dead",
"scripts": {
"build": "webpack --mode production --progress",
"dev": "webpack --mode development --progress",
"watch": "webpack --mode development --watch",
"cypress:open": "CYPRESS_CRASH_REPORTS=0 cypress open --browser electron --e2e",
"cypress:run": "CYPRESS_CRASH_REPORTS=0 wait-on http://127.0.0.1:8000/ && cypress run --browser electron --e2e",
"format": "prettier --write './frontend/**/*'"
},
"repository": "github.com/jberghoef/wagtail-tag-manager",
"author": "Jasper Berghoef",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.17.10",
"@types/codemirror": "^5.60.5",
"@types/js-cookie": "^3.0.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"cypress": "^10.0.3",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^7.0.1",
"prettier": "^2.6.2",
"sass-loader": "^13.0.0",
"serialize-javascript": "^6.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"wait-on": "^7.0.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"codemirror": "^5.65.3",
"js-cookie": "^3.0.1",
"whatwg-fetch": "^3.6.2"
}
}