-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "react-gdpr",
"version": "0.0.5",
"description": "React components for Cookies settings panel, cookie banner and redux store for GDPR Compliance websites",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "npm run build-css && webpack",
"build-css": "npm run copyscrollcss && node-sass --include-path scss sass/GDPRCustom.scss css/main.css",
"copyscrollcss": "node tool/copyscrollcss.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsellam/react-gdpr.git"
},
"keywords": [
"gdpr",
"react",
"cookies"
],
"author": "Jérémie Sellam",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsellam/react-gdpr/issues"
},
"homepage": "https://github.com/jsellam/react-gdpr#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"node-sass": "^4.9.1",
"webpack": "^4.15.0",
"webpack-cli": "^3.0.8"
},
"peerDependencies": {
"react": "^16.4.1"
},
"dependencies": {
"class-names": "^1.0.0",
"js-cookie": "^2.2.0",
"overlayscrollbars": "^1.5.0",
"react": "^16.4.1"
}
}