-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "contenta_aframe",
"version": "1.0.0",
"description": "An [A-Frame](https://aframe.io) [WebVR](https://webvr.info/) consumer for [Contenta CMS](http://www.contentacms.org/).",
"author": "Jerad Bitner",
"license": "MIT",
"homepage": "https://contentacms.github.io/contenta_aframe",
"repository": {
"type": "git",
"url": "git+https://github.com/contentacms/contenta_aframe.git"
},
"bugs": {
"url": "https://github.com/contentacms/contenta_aframe/issues"
},
"engines": {
"node": ">=8.2.1"
},
"scripts": {
"lint": "eslint --ext .jsx,.js src",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"precommit": "lint-staged && yarn lint",
"prettier": "prettier --single-quote --write \"src/**/*.{js,jsx}\""
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.1.0",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"last-release-git": "^0.0.3",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3",
"react-scripts": "^1.0.10"
},
"dependencies": {
"aframe": "^0.6.1",
"aframe-react": "^4.3.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}