-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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": "faster-mta",
"version": "1.0.0",
"description": "",
"main": "mta.js",
"dependencies": {},
"devDependencies": {
"an-scripts": "^1.3.0",
"bundlesize": "^0.17.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.6.0",
"firebase-tools": "^6.1.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"workbox-webpack-plugin": "^3.6.3"
},
"scripts": {
"start": "webpack-dev-server --mode=development",
"lint": "an-scripts lint",
"build": "webpack",
"deploy.hosting": "npm run build && firebase deploy --only hosting",
"deploy.functions": "firebase deploy --only functions",
"deploy": "npm run deploy.hosting & npm run deploy.functions",
"validate": "npm run lint && npm run build && bundlesize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newyork-anthonyng/faster-mta.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/newyork-anthonyng/faster-mta/issues"
},
"homepage": "https://github.com/newyork-anthonyng/faster-mta#readme",
"bundlesize": [
{
"path": "./dist/**.@(js|html)",
"maxSize": "3 kB"
}
]
}