-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
133 lines (133 loc) · 3.9 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "editvr-frontend",
"description": "Editorial frontend, driven by EditVR's API.",
"version": "0.0.0-development",
"private": false,
"license": "GPL-3.0",
"homepage": "https://dev.editvr.io",
"contributors": [
{
"name": "Patrick Coffey",
"email": "patrickcoffey48@gmail.com"
},
{
"name": "Adam Erickson",
"email": "adam@fourkitchens.com"
},
{
"name": "James Todd",
"email": "james@fourkitchens.com"
},
{
"name": "Randy Oest",
"email": "randy@fourkitchens.com"
},
{
"name": "Luke Herrington",
"email": "luke@fourkitchens.com"
},
{
"name": "Jeff Tomlinson",
"email": "jeff@fourkitchens.com"
},
{
"name": "Mike Minecki",
"email": "mike@fourkitchens.com"
},
{
"name": "Allan Chappell",
"email": "allan@fourkitchens.com"
}
],
"engines": {
"node": ">=10.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/editvr/editvr-frontend.git"
},
"release": {
"verifyConditions": ["@semantic-release/github"],
"publish": ["@semantic-release/github"],
"success": ["@semantic-release/github"],
"fail": ["@semantic-release/github"]
},
"dependencies": {
"@editvr/aframe-dialog-popup-component": "^1.2.0",
"@editvr/aframe-simple-link-component": "^1.4.0",
"@material-ui/core": "^1.0.0",
"@material-ui/icons": "^1.1.0",
"aframe": "^0.8.2",
"aframe-look-at-component": "^0.6.0",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"deep-equal": "^1.0.1",
"formik": "^0.11.11",
"history": "^4.7.2",
"jsona": "^1.1.10",
"prop-types": "^15.6.1",
"qs": "^6.5.2",
"ramda": "^0.25.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-dropzone": "^4.2.11",
"react-redux": "^5.0.7",
"react-redux-loading-bar": "^4.0.5",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-persist": "^5.9.1",
"redux-saga": "^0.16.0",
"yup": "^0.25.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"coverage": "react-scripts test --env=jsdom --coverage --verbose",
"test:ci": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"emdaer": "emdaer && git add *.md",
"audit": "npm i --package-lock-only ; npm audit",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"semantic-release": "semantic-release",
"prettier": "prettier --write \"**/*.{js,jsx,json,css}\"",
"lint": "eslint --ext .jsx,.js .",
"commitmsg": "commitlint -e $GIT_PARAMS",
"test:debug": "react-scripts --inspect-brk test --runInBand --env=jsdom",
"precommit":
"lint-staged -c lint-staged.config.js ; yarn lint ; yarn test:ci"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-angular": "^6.1.3",
"@emdaer/cli": "^3.0.0",
"@emdaer/plugin-contributors-details-github": "^3.0.0",
"@emdaer/plugin-license-reference": "^3.0.0",
"@emdaer/plugin-shields": "^3.0.0",
"@emdaer/plugin-value-from-package": "^3.0.0",
"@emdaer/transform-prettier": "^3.0.0",
"@semantic-release/github": "^4.2.16",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-redux": "^0.2.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"jest-mock-axios": "^2.1.11",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1",
"react-test-renderer": "^16.3.2",
"redux-mock-store": "^1.5.1",
"redux-saga-test-plan": "^3.7.0",
"semantic-release": "^15.4.1"
}
}