-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.63 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
{
"author": "KIProtect GmbH",
"browserslist": [
"> 0.25%",
"IE 11",
"IE 9"
],
"bugs": {
"url": "https://github.com/kiprotect/konsens/issues"
},
"dependencies": {},
"description": "A privacy-first event tracking & user experience framework.",
"devDependencies": {
"@babel/cli": "7.10.4",
"@babel/core": "7.10.4",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.10.4",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.8.3",
"@types/classnames": "2.2.9",
"@types/react": "16.9.19",
"@typescript-eslint/eslint-plugin": "2.17.0",
"@typescript-eslint/parser": "2.17.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"classnames": "^2.2.6",
"core-js": "^3.8.3",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.18.0",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"preact": "^10.5.11",
"sass-loader": "^9.0.3",
"style-loader": "^1.3.0",
"stylelint": "^13.9.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"typescript": "3.7.5",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-bundle-size-analyzer": "^3.1.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"yaml-loader": "^0.6.0"
},
"files": [
"*.js",
"*.css",
"*.scss",
"src/**/*.css",
"src/**/*.scss",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.jsx",
"src/**/*.tsx",
"src/**/*.yml"
],
"homepage": "https://kiprotect.com/konsens",
"keywords": [
"cookie",
"consent",
"gdpr",
"compliance"
],
"license": "BSD-3-Clause",
"main": "dist/konsens.js",
"name": "konsens",
"repository": {
"type": "git",
"url": "git+https://github.com/kiprotect/konsens.git"
},
"scripts": {
"lint": "eslint ./src --quiet",
"lint-fix": "eslint ./src --fix",
"lint-scss": "stylelint ./src/scss/*.scss --quiet",
"lint-scss-fix": "stylelint ./src/scss/*.scss --fix",
"make": "cross-env APP_ENV=production cross-env cross-env webpack --config webpack.config.js",
"make-dev": "cross-env APP_ENV=dev cross-env APP_DEV_MODE=server webpack-dev-server --host 0.0.0.0 --config webpack.config.js --history-api-fallback",
"make-watch": "cross-env APP_ENV=dev cross-env APP_DEV_MODE=watch webpack --watch --config webpack.config.js"
},
"version": "0.1.1"
}