-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.44 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
{
"name": "react-map-editor",
"version": "0.4.3",
"description": "Subset of HackforPlay. Experimental",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"umd": "umd"
},
"files": [
"src",
"lib",
"umd"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npm run watch",
"test": "npm run lint && npm run cursor && tsc && ava",
"watch": "webpack-dev-server",
"lint": "prettier -l 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"build": "webpack -p && tsc",
"prepublishOnly": "npm run build",
"cursor": "node convert-cursors.js",
"svgr": "svgr --icon --replace-attr-values '#000=currentColor' --template ./svgr-template.js --ext tsx -d src/icons src/svg"
},
"repository": {
"type": "git",
"url": "https://github.com/hackforplay/react-map-editor.git"
},
"keywords": [
"hackforplay",
"react",
"map",
"editor"
],
"author": "teramotodaiki",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackforplay/react-map-editor/issues"
},
"homepage": "https://github.com/hackforplay/react-map-editor#readme",
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/runtime": "^7.0.0-beta.54",
"@hackforplay/next": "^0.9.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@types/lodash-es": "^4.17.3",
"@types/node": "^11.13.2",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-resize-detector": "^4.0.1",
"csstips": "^0.3.0",
"immer": "^3.1.3",
"lodash-es": "^4.17.14",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-resize-detector": "^4.1.3",
"recoil": "0.7.2",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.54",
"@babel/plugin-transform-runtime": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.54",
"@babel/preset-typescript": "^7.0.0-beta.54",
"@svgr/cli": "^2.4.1",
"ava": "^1.4.1",
"babel-loader": "^8.0.0-beta.4",
"esm": "^3.2.25",
"html-webpack-plugin": "^3.2.0",
"prettier": "^2.0.5",
"semantic-release": "^17.2.3",
"ts-node": "^7.0.0",
"typescript": "^3.9.3",
"url-loader": "^1.0.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}