-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
{
"name": "react-touch-canvas",
"version": "0.4.4",
"description": "React higher order components to create zoomable/pannable canvas",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jussikinnula/react-touch-canvas"
},
"license": "MIT",
"homepage": "https://jussikinnula.github.io/react-touch-canvas",
"contributors": [
"Jussi Kinnula <[email protected]>"
],
"engines": {
"node": "^8.11.3",
"npm": "^6.4.1"
},
"scripts": {
"prebuild:lib": "npm run clean && npm run lint",
"build": "npm run build:lib && npm run build:example",
"build:lib": "tsc --project ./tsconfig.lib.json --outDir ./lib --declaration",
"build:example": "NODE_ENV=production webpack",
"clean": "rimraf ./lib && rimraf ./example/*.app.js && rimraf ./example/index.html",
"start": "NODE_ENV=development webpack-dev-server --host 0.0.0.0 --contentBase './src' --port 5000 --history-api-fallback",
"remote-log": "REMOTE_LOG_PORT=12345 REMOTE_LOG_HOST=0.0.0.0 remote-log",
"lint": "tslint --project ./tsconfig.lib.json"
},
"dependencies": {
"@types/events": "^1.2.0",
"events": "^3.0.0"
},
"peerDependencies": {
"@types/react": "^16.7.7",
"react": "^16.6.3"
},
"devDependencies": {
"@types/node": "^10.12.10",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.10",
"@types/react-router-dom": "^4.3.1",
"@types/webpack": "^4.4.19",
"@types/webpack-env": "^1.13.6",
"@types/webpack-merge": "4.1.3",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"gl-react": "^3.15.0",
"gl-react-dom": "^3.15.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"remote-log-websocket": "^0.4.1",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tsutils": "^3.5.1",
"typescript": "^3.1.6",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}