-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
82 lines (82 loc) · 2.12 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
{
"homepage": "http://svgurt.com",
"name": "svgurt",
"version": "1.0.3",
"main": "lib/module.js",
"bin": {
"svgurt": "./lib/cli.js"
},
"types": "./index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Anemy/svgurt.git"
},
"files": [
"LICENSE",
"lib",
"package.json",
"README.md",
"index.d.ts"
],
"scripts": {
"start": "react-scripts start",
"format": "prettier --write \"src/**/*{.js,.jsx}\" \"!**/lib/**\"",
"fmt": "npm run format",
"compile-cli": "babel -d lib/ src/",
"build": "react-scripts build && npm run compile-cli",
"deploy": "npm run build && gh-pages -d build",
"eject": "react-scripts eject",
"pretest": "npm run build",
"test": "babel-node ./test/test-npm-module.js"
},
"dependencies": {
"file-api": "^0.10.4",
"get-pixels": "^3.3.3",
"image-data-uri": "^2.0.1",
"image-size": "^1.0.1",
"jsfeat": "0.0.8",
"lodash": "^4.17.21",
"stackblur-canvas": "^2.5.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.6",
"dat.gui": "^0.7.9",
"dotenv": "^16.0.3",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"gh-pages": "^3.2.3",
"node-fetch": "^2.6.8",
"postcss-normalize": "^10.0.1",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.8.0",
"react-scripts": "^5.0.1",
"react-select": "^5.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}