-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1013 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
31
32
33
34
35
36
{
"name": "parcel-reactjs",
"version": "1.0.0",
"description": "A minimal React.js boilerplate with parcel as bundler",
"main": "index.js",
"scripts": {
"start": "parcel ./src/index.html"
},
"keywords": [
"parcel",
"react"
],
"license": "MIT",
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"posthtml-img-autosize": "^0.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"parcel-bundler": "^1.0.1"
}
}