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": "1.1.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.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.0",
"@types/codemirror": "^5.60.5",
"@types/js-cookie": "^3.0.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"cypress": "^8.7.0",
"mini-css-extract-plugin": "^2.4.4",
"node-sass": "^6.0.1",
"prettier": "^2.4.1",
"sass-loader": "^12.3.0",
"serialize-javascript": "^6.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"wait-on": "^6.0.0",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"codemirror": "^5.63.3",
"js-cookie": "^3.0.1",
"whatwg-fetch": "^3.6.2"
}
}