-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "wagtail-shortcode",
"version": "1.0.1",
"description": "Draftail Shortcode Entity, adds link-like shortcodes to Draftail.",
"main": "wagtail_shortcode/static_src/main.tsx",
"scripts": {
"start": "webpack --config ./webpack.config.js --mode development --progress --watch",
"build": "webpack --config ./webpack.config.js --mode production"
},
"author": "Ben Morse",
"license": "BSD-3-Clause",
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/draft-js": "^0.11.10",
"@types/react": "^16.14.21",
"@types/react-dom": "^16.0",
"@types/styled-components": "^5.1.23",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.7",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^8.0.1",
"sass": "^1.45.3",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"draft-js": "^0.10.5",
"draftail": "^2.0.0-rc.6",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"styled-components": "^6.0.8"
}
}