forked from jberghoef/wagtail-tag-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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": "0.25.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",
"cypress:run": "CYPRESS_CRASH_REPORTS=0 wait-on http://127.0.0.1:8000/ && cypress run",
"format": "prettier --write './frontend/**/*'"
},
"repository": "github.com/jberghoef/wagtail-tag-manager",
"author": "Jasper Berghoef",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/codemirror": "^0.0.98",
"@types/js-cookie": "^2.2.6",
"babel-loader": "^8.0.6",
"css-loader": "^5.0.0",
"cypress": "^5.5.0",
"mini-css-extract-plugin": "^1.2.1",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"sass-loader": "^10.0.4",
"serialize-javascript": "^5.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.7",
"typescript": "^4.0.5",
"wait-on": "^5.2.0",
"webpack": "^5.3.1",
"webpack-cli": "^4.1.0"
},
"dependencies": {
"codemirror": "^5.58.2",
"js-cookie": "^2.2.1",
"whatwg-fetch": "^3.4.1"
}
}