-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "r2vr",
"version": "1.0.0",
"description": "Annotate VR imagery - interfaced through R",
"main": "index.ts",
"directories": {
"man": "man",
"test": "tests"
},
"scripts": {
"dev": "webpack --watch --mode development",
"prod": "webpack --mode production",
"lint": "eslint typescript/**/*.ts --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jon-Peppinck/r2vr-2020.git"
},
"keywords": [
"R2VR",
"WebVR"
],
"author": "Jon Peppinck",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jon-Peppinck/r2vr-2020/issues"
},
"homepage": "https://github.com/Jon-Peppinck/r2vr-2020#readme",
"devDependencies": {
"@types/aframe": "^0.8.4",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"redux-logger": "^3.0.6",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rxjs": "^6.5.5"
}
}