-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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": "instant-trivia",
"version": "1.2.13",
"description": "Instant Trivia game using Open Trivia DB",
"private": true,
"scripts": {
"start": "webpack-serve --config webpack.config.js",
"public": "webpack-serve --config webpack.config.js",
"build": "webpack --env.colors --progress --profile --bail",
"build:gh-pages": "webpack --env.colors --progress --profile --bail",
"preversion": "yarn build",
"deploy": "yarn deploy:gh-pages",
"predeploy:gh-pages": "cross-env GITHUB_CUSTOM_DOMAIN=1 yarn build:gh-pages",
"deploy:gh-pages": "echo trivia.cuesta.dev > ./build/CNAME && webpack-parts-deploy-gh-pages",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://www.github.com/alvaro-cuesta/instant-trivia.git"
},
"homepage": "https://trivia.cuesta.dev",
"bugs": "https://github.com/alvaro-cuesta/instant-trivia/issues",
"keywords": [
"trivia",
"trivial",
"game",
"quiz"
],
"author": {
"name": "Álvaro Cuesta",
"url": "https://alvaro-cuesta.github.io/"
},
"license": "ISC",
"devDependencies": {
"@alvaro-cuesta/webpack-parts": "^0.12.3",
"cross-env": "^7.0.3",
"react-hot-loader": "^4.2.0",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-serve": "^2.0.2"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"classnames": "^2.2.6",
"prop-types": "^15.6.2",
"raw-loader": "^0.5.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-svg-inline": "^2.1.1"
},
"resolutions": {
"node-sass": "^9.0.0"
}
}