-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 861 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
31
32
33
34
35
36
{
"name": "parcel-react-starter",
"version": "0.0.1",
"description": "A minimal React.js boilerplate with parcel as bundler",
"main": "index.js",
"scripts": {
"start": "parcel ./src/index.html --open",
"build": "parcel build ./src/index.html"
},
"keywords": [
"parcel",
"react"
],
"author": "Lars <“lars@keytoe.nl”> (https://lars.coffee)",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.8.6",
"babel-preset-env": "^1.7.0",
"node-sass": "^4.9.0",
"postcss-modules": "^1.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"postcss": {
"modules": false,
"plugins": {
"autoprefixer": {
"browsers": [">1%", "last 4 versions", "Firefox ESR", "not ie < 9"],
"flexbox": "no-2009"
}
}
},
"devDependencies": {
"parcel-bundler": "^1.6.1"
}
}