-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "react-web-ar",
"version": "1.0.0-beta3",
"description": "Augmented Reality with React",
"main": "build/react-ar.min.js",
"author": "Nitin Tulswani",
"license": "MIT",
"files": ["build"],
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"three": "^0.87.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react-app": "^3.0.3",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"aframe": "^0.7.1",
"aframe-react": "^4.3.0"
},
"scripts": {
"precommit": "lint-staged",
"build":
"NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.prod.js --progress",
"start":
"NODE_ENV=development ./node_modules/.bin/webpack-dev-server --content-base ./public --hot --config ./webpack/webpack.config.dev.js"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
}
}