-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
60 lines (60 loc) · 1.83 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
{
"name": "kanaquiz",
"version": "2.1.0",
"description": "Application for studying hiragana & katakana characters.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open --env.mode development --host 0.0.0.0 --config webpack.config.js",
"mobile": "webpack-dev-server --open --env.mode development --host 0.0.0.0 --public 192.168.1.8:8080",
"build": "webpack --env.mode production --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anzzstuff/kanaquiz.git"
},
"author": "Antti Pilto",
"license": "MIT",
"bugs": {
"url": "https://github.com/anzzstuff/kanaquiz/issues"
},
"homepage": "https://github.com/anzzstuff/kanaquiz#readme",
"browserslist": [
">0.25%",
"not dead"
],
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.12.0",
"postcss": "^7.0.5",
"postcss-loader": "^3.0.0",
"precss": "^3.1.2",
"react-hot-loader": "^4.3.12",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.9.0",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"lodash": "^4.17.15",
"lodash.template": "^4.5.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-toggle-switch": "^3.0.4",
"react-transition-group": "^2.5.0",
"serialize-javascript": "^2.1.1",
"workbox-window": "^4.3.1"
}
}