generated from desenvolvweb/basic-front-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
30 lines (30 loc) · 817 Bytes
/
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
{
"name": "basic-front-boilerplate",
"version": "1.0.0",
"description": "Boilerplate básico para projetos front-end com ênfase em HTML/CSS.",
"main": "script.js",
"scripts": {
"start": "npm run dev",
"dev": "parcel index.html",
"build": "parcel build index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desenvolvweb/basic-front-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/desenvolvweb/basic-front-boilerplate/issues"
},
"homepage": "https://github.com/desenvolvweb/basic-front-boilerplate#readme",
"devDependencies": {
"parcel-bundler": "^1.12.4",
"parcel-plugin-nuke-dist": "^1.0.1",
"sass": "^1.23.3"
},
"browserslist": [
"last 2 Chrome versions"
]
}