-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "parcel-js-react-starter",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshwilkerson/parcel-js-react-starter"
},
"scripts": {
"start": "cross-env NODE_ENV=development parcel src/index.html --port 1234 --open",
"restart": "cross-env NODE_ENV=development parcel src/index.html --port 1234",
"prettier": "prettier --write './src/**/*.js'",
"eslint": "eslint ./src",
"build": "cross-env NODE_ENV=production parcel build src/index.html --no-minify --public-url /"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^9.7.2",
"babel-eslint": "^10.1.0",
"browserslist": "^4.16.5",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"prop-types": "^15.7.2"
},
"postcss": {
"modules": false,
"plugins": {
"autoprefixer": {
"flexbox": "no-2009"
}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 11"
]
}