-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
74 lines (74 loc) · 2.24 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
{
"name": "react-svgmt",
"version": "2.0.2",
"description": "Convenient SVG loading and manipulation from react",
"repository": {
"type": "git",
"url": "https://github.com/hugozap/react-svgmt"
},
"author": "Hugo Zapata",
"license": "MIT",
"bugs": {
"url": "https://github.com/hugozap/react-svgmt/issues"
},
"homepage": "https://hugozap.github.io/react-svgmt",
"keywords": [
"react",
"svg"
],
"scripts": {
"test": "./__tests__/runtests.sh",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src,examples}/**/*.{js,jsx,css,scss}\"",
"build": "cross-env NODE_ENV=production webpack --bail --mode=production",
"start-test-server": "webpack-dev-server --entry=./__tests__/testapp.js --content-base=./__tests__ --config=./webpack.test.config.js",
"prepublishOnly": "npm run lint && npm run build"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "7",
"babel-loader": "^7.1.2",
"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.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.5.0",
"babelify": "^7.3.0",
"budo": "^11.2.0",
"cross-env": "^5.1.4",
"cypress": "^3.2.0",
"enzyme": "3.0.0",
"enzyme-adapter-react-16": "1.1.0",
"eslint": "4.x",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0",
"jest-cli": "^20.0.4",
"nodemon": "^1.9.1",
"prettier": "^1.11.1",
"raf": "3.4.0",
"raw-loader": "^0.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "16.1.1",
"sinon": "^4.1.3",
"tape": "^4.6.3",
"wait-on": "^2.1.0",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2"
},
"dependencies": {
"d3-ease": "^1.0.3",
"prop-types": "^15.8.1"
}
}