-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"name": "fastmeme",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm test && webpack --mode=production",
"dev": "webpack serve --mode=development",
"test": "jest --verbose",
"test/watch-mode": "jest --watchAll --verbose",
"eslint/fix": "eslint src/**/*.jsx --fix"
},
"author": "ShatterPlayer",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^5.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.30.0",
"husky": "^2.7.0",
"jest": "^28.1.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^1.19.1",
"url-loader": "^1.1.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"dependencies": {
"file-saver": "^2.0.5",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.3.3",
"styled-components": "^4.4.1",
"workbox-webpack-plugin": "^4.3.1"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}