-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
108 lines (108 loc) · 3.16 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "cloudflare-plugin-frontend",
"version": "3.2.4",
"description": "A React/Redux frontend for Cloudflare plugins",
"main": "src/index.js",
"scripts": {
"build": "NODE_ENV=development webpack --progress",
"build:production": "NODE_ENV=production webpack --progress",
"clean": "rm -rf .jest && rm -rf node_modules",
"cover": "jest --coverage",
"format": "eslint src/ --fix --ext js --ext json",
"lint": "eslint src/ --ext js --ext json",
"test": "jest",
"update-snapshot": "jest --updateSnapshot"
},
"jest": {
"cacheDirectory": ".jest",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testMatch": [
"**/test/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/|_helpers"
]
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:cloudflare/cloudflare-plugin-frontend.git"
},
"keywords": [
"cloudflare"
],
"author": "Cloudflare",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"c3": "^0.4.10",
"cf-component-button": "3.0.0",
"cf-component-card": "^1.1.0",
"cf-component-checkbox": "^3.0.0",
"cf-component-dropdown": "^2.0.0",
"cf-component-flex": "^2.0.0",
"cf-component-form": "^3.0.3",
"cf-component-heading": "^2.0.0",
"cf-component-input": "^3.0.0",
"cf-component-layout": "^1.2.1",
"cf-component-link": "^4.0.0",
"cf-component-list": "^2.0.0",
"cf-component-loading": "^2.0.0",
"cf-component-modal": "5.3.0",
"cf-component-notifications": "^2.0.0",
"cf-component-radio": "^2.0.0",
"cf-component-select": "^2.5.0",
"cf-component-table": "^2.1.0",
"cf-component-tabs": "^5.2.0",
"cf-component-text": "^2.0.0",
"cf-component-textarea": "^3.0.1",
"cf-component-toggle": "^2.0.1",
"cf-util-http": "^2.0.1",
"d3-format": "^1.0.2",
"eslint": "^7.25.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "^4",
"eslint-plugin-cflint": "^1.0.0",
"eslint-plugin-compat": "^3",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^8",
"eslint-plugin-prettier": "^3",
"eslint-plugin-react": "^7.1.0",
"history": "3.2.1",
"intl": "^1.1.0",
"jest": "^26",
"lodash": "^3.10.1",
"markdown-it": "^8.3.1",
"normalizr": "^2.0.0",
"prettier": "^1.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-gateway": "^2.0.4",
"react-intl": "^2.3.0",
"react-redux": "^5.0.4",
"react-router": "3.0.5",
"react-router-redux": "4.0.7",
"react-test-renderer": "^15.4.2",
"redux": "^3.0.4",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^1.0.0",
"webpack": "^4"
},
"dependencies": {
"@cloudflare/component-icon": "^5.15.2",
"cf-component-box": "^2.2.1",
"cf-style-provider": "^1.5.0",
"prop-types": "^15.5.8",
"webpack-cli": "^4.6.0"
},
"browserslist": "> 1%"
}