-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.6 KB
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
{
"name": "fem",
"version": "1.0.0",
"description": "My own react demo",
"main": "src/App.js",
"scripts": {
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"format:check": "prettier --list-different \"src/**/*.{js.jsx, css} \"",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel src/index.html --open",
"clear": "rm -rf dist/ .cache/",
"build": "parcel build src/index.html --out-dir public"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.9.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"minimist": "^1.2.5",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"sass": "^1.26.5"
},
"dependencies": {
"@petfinder/petfinder-js": "^1.0.6",
"animate.css": "^4.1.0",
"bootstrap": "^4.5.0",
"font-awesome": "^4.7.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"browserslist": [
"last 1 Chrome versions"
]
}