-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "birdbox",
"version": "1.0.0",
"description": "A system to create a quick-deploy, easily customisable, CMS-backed microsite service",
"private": true,
"scripts": {
"start": "concurrently --kill-others \"python birdbox/manage.py runserver 0.0.0.0:8080\" \"npm run watch\"",
"static": "webpack --config webpack.static.config.js --mode=production --bail",
"prewatch": "npm run static",
"watch": "webpack serve --mode=development",
"prebuild": "npm run static",
"build": "webpack --mode=production --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozmeao/birdbox.git"
},
"author": "Mozilla",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozmeao/birdbox/issues"
},
"homepage": "https://github.com/mozmeao/birdbox#readme",
"dependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@mozilla-protocol/core": "^18.0.0",
"@mozmeao/dnt-helper": "^1.0.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"mini-css-extract-plugin": "^2.9.0",
"sass-loader": "^14.2.1",
"sass": "^1.77.4",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.3"
},
"devDependencies": {
"concurrently": "^8.2.0",
"webpack-dev-server": "^5.0.4"
},
"browserslist": [
"defaults",
"IE 10"
]
}