-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.21 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
{
"name": "react-ar-markers",
"version": "1.0.0-beta",
"description": "",
"main": "dist/react-ar-markers.js",
"module": "lib/index.js",
"scripts": {
"build": "npm-run-all build:clean eslint build:es6 build:es5",
"build:clean": "rimraf dist lib",
"build:es6": "cross-env BABEL_ENV=es6 babel src/ --out-dir lib/",
"build:es5": "webpack --config ./build/webpack.config.js --env.NODE_ENV=production",
"eslint": "eslint \"./src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config ./build/webpack.config.js --env.NODE_ENV=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paztis/react-ar-markers.git"
},
"keywords": [
"react"
],
"author": "Jérôme HENAFF",
"license": "MIT",
"bugs": {
"url": "https://github.com/paztis/react-ar-markers/issues"
},
"homepage": "https://github.com/paztis/react-ar-markers#readme",
"dependencies": {
"aframe": "^0.7.1",
"aframe-react": "^4.3.0",
"ar.js": "jeromeetienne/AR.js",
"classnames": "^2.2.5",
"geolib": "^2.0.24",
"google-map-react": "^0.25.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"asm-async-loader": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"binary-loader": "^0.0.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"node-sass": "^4.7.1",
"npm-run-all": "^4.1.2",
"react": "^15.6.1",
"react-dom": "^15.6.2",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"script-loader": "^0.7.2",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}