-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "aframe-react-assets",
"version": "2.0.5",
"description": "A React component for smart managing your AFrame VR assets. You can declare your assets at your React component.",
"author": "Luat Nguyen",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/luatnd/aframe-react-assets.git"
},
"keywords": [
"react",
"aframe",
"react-component",
"assets-management"
],
"scripts": {
"watch": "BABEL_ENV=development yarn babel -- src --out-dir dist --watch",
"build": "BABEL_ENV=development yarn babel -- src --out-dir dist",
"build-prod": "BABEL_ENV=production yarn babel -- src --out-dir dist",
"publish": "echo TODO",
"test": "jest"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^15.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react-app": "^3.0.3"
}
}