-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "fast",
"version": "1.0.2",
"description": "Develop, build, deploy, redeploy, and teardown frontend projects fast ⚡️",
"scripts": {
"start": "parcel -p 3000 index.html",
"serve": "\"$npm_execpath\" start --open",
"build": "parcel build index.html",
"deploy": "\"$npm_execpath\" build && cd dist && surge",
"redeploy": "\"$npm_execpath\" build && cd dist && surge --domain",
"teardown": "surge teardown"
},
"repository": {
"type": "git",
"url": "https://github.com/reblim/fast.git"
},
"author": "Milber Ferreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/reblim/fast/issues"
},
"homepage": "https://github.com/reblim/fast#readme",
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
],
"devDependencies": {
"autoprefixer": "^10.4.4",
"parcel": "^2.4.1",
"parcel-plugin-clean-dist": "^0.0.6",
"postcss": "^8.1.0",
"sass": "^1.49.11",
"surge": "^0.23.1"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}