-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 846 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 846 Bytes
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": "base-starter",
"description": "Base Starter - A Rock Solid, Starter template that includes the Base CSS framework and modules to get you started on your next app or website.",
"author": "Matthew Hartman <matthewhartmanau@gmail.com>",
"version": "5.0.0",
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"ie >= 10"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"dependencies": {
"@getbase/base": "^5.0.3"
},
"devDependencies": {
"autoprefixer": "^9.7.6",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.5"
},
"scripts": {
"start": "NODE_ENV=development parcel src/index.html --open",
"build": "NODE_ENV=production rm -rf dist && parcel build --no-content-hash src/index.html --public-url ./ --out-dir ./dist",
"clean": "rm -rf dist"
}
}