forked from decentraland/tile-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
{
"name": "@wiicamp/react-tile-map",
"version": "0.0.4",
"description": "",
"main": "lib/index.js",
"typings": "lib/src/index.d.ts",
"scripts": {
"start": "start-storybook",
"build": "rimraf lib && webpack --config webpack.config.js && rimraf lib/stories",
"build-storybook": "build-storybook",
"prepublish": "npm run build",
"deploy": "npm run build-storybook && now alias $(now storybook-static --public) tile-map --scope=wiicamp"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/react-virtualized": "^9.21.2",
"impetus": "^0.8.8",
"mouse-wheel": "^1.2.0",
"react-virtualized": "^9.21.1",
"touch-pinch": "^1.0.1",
"touch-position": "^2.0.0"
},
"devDependencies": {
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-storysource": "^5.1.3",
"@storybook/react": "^5.1.1",
"@types/react": "^16.4.1",
"@types/react-test-renderer": "^16.0.1",
"@types/storybook__react": "^3.0.7",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"mini-css-extract-plugin": "^0.7.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"storybook": "^1.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.2",
"typescript": "^3.5.1",
"url-loader": "^2.0.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 90
}
}