-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.91 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
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
{
"name": "gdpr-cookies",
"version": "1.2.1",
"description": "System for website. informs the visitor of the use of cookies and gives the possibility to refuse cookies",
"main": "index.js",
"scripts": {
"test": "jest",
"build:clean": "rimraf ./dist",
"build": "webpack --config webpack.config.prod.js",
"start": "npm run build:clean & NODE_ENV=development webpack-dev-server",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"flow": "flow",
"format": "prettier --write \"**/*.+(js|jsx||json|yml|yaml|css|scss|ts|tsx|graphql|vue|mjs)\" ",
"validate": "npm run lint && npm run test && npm run flow"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/compat-data": "^7.15.0",
"core-js": "^3.18.1",
"deepmerge": "^4.2.2",
"eslint-config-preact": "^1.1.4",
"js-cookie": "^3.0.1",
"preact": "^10.5.14",
"preact-compat": "^3.19.0",
"redux-zero": "^5.1.7"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@testing-library/dom": "^8.6.0",
"@testing-library/preact": "^2.0.1",
"autoprefixer": "^10.3.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.3.0",
"desvg-loader": "^0.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-promise": "^5.1.0",
"flow-bin": "^0.160.2",
"flow-remove-types": "^2.160.2",
"flow-typed": "^3.3.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.2.3",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.3.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.3.8",
"postcss-loader": "6.1.1",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^4.0.0",
"precss": "^4.0.0",
"prettier": "^2.4.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"svg-loader": "0.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test && npm run flow"
}
}
}