-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.96 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "savepets",
"version": "0.0.8",
"description": "This project intends to save abandoned pets and to find out a home for them!",
"main": "index.js",
"scripts": {
"svgr": "svgr --memo --out-dir src/assets/icons/ assets/",
"start": "cross-env webpack-dev-server --config webpack.dev.js --color --progress",
"build": "cross-env webpack --config webpack.prod.js --color --progress",
"build:server": "cross-env webpack --config webpack.prod.js --color --progress && http-server ./build/ -o",
"test": "jest -- --watch --config ./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savepetsorg/savepets.git"
},
"keywords": [
"pets",
"save",
"org"
],
"author": "Eduardo Kohn",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/savepetsorg/savepets/issues"
},
"homepage": "https://github.com/savepetsorg/savepets#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"core-js": "^3.6.5",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/plugin-transform-template-literals": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@svgr/cli": "^5.4.0",
"@svgr/webpack": "^5.4.0",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.1",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"browserslist": "^4.14.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.0.2",
"eslint-plugin-testing-library": "^3.9.2",
"favicons-webpack-plugin": "^4.2.0",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.1",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"react-hot-loader": "^4.13.0",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}