-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 962 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
{
"name": "react-learniing-frontendmaster",
"version": "1.0.0",
"description": "",
"main": "App.js",
"scripts": {
"dev": "parcel src/index.html",
"format": "prettier \"src/**/*.{js,css,html}\" --write",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"prettier": "^1.18.2",
"parcel-bundler": "^1.12.1"
},
"dependencies": {
"@frontendmasters/pet": "^1.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}