-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·71 lines (71 loc) · 2.25 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
{
"name": "crespi",
"version": "1.0.0",
"description": "Visit the world through virtual reality",
"main": "src/index.js",
"homepage": "https://visionn.github.io/crespi/",
"scripts": {
"start": "webpack-dev-server --hot --inline",
"test": "return 0",
"build": "webpack --mode production",
"lint": "eslint --ignore-path .gitignore .",
"coveralls": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"prettier": "prettier --write \"./**/*.js\"",
"add-domain": "echo \"crespi.world\" > build/CNAME"
},
"pre-commit": [
"prettier",
"git-add"
],
"author": "defending1",
"license": "http://www.apache.org/licenses/LICENSE-2.0",
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.4.5",
"babel-loader": "8.0.6",
"babel-plugin-styled-components": "^1.10.0",
"coveralls": "^3.0.3",
"eslint": "5.16.0",
"eslint-config-google": "0.13.0",
"file-loader": "^3.0.1",
"generate-robotstxt": "^6.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"jest": "^24.8.0",
"prettier": "1.17.1",
"raw-loader": "^2.0.0",
"react-markdown": "^4.0.8",
"redux-devtools": "3.5.0",
"redux-devtools-extension": "^2.13.8",
"robotstxt-webpack-plugin": "^5.0.0",
"simple-progress-webpack-plugin": "^1.1.2",
"sitemap-webpack-plugin": "^0.6.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "4.32.2",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.4.1"
},
"dependencies": {
"markdown-react-js": "^1.0.2",
"npm": "^6.9.0",
"react": "^16.8.6",
"react-container-dimensions": "^1.4.1",
"react-dom": "^16.8.6",
"react-lazyload": "^2.5.0",
"react-loading-skeleton": "^1.1.1",
"react-player": "^1.11.0",
"react-qr-svg": "^2.2.1",
"react-redux": "^7.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.0.0-beta.7-hoist",
"styled-normalize": "^8.0.6",
"three": "^0.104.0"
}
}