-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 KB
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
{
"name": "storekeeper",
"version": "0.3.1",
"description": "JavaScript implementation of Sokoban game",
"main": "src/index.js",
"scripts": {
"start": "node server.js",
"dist": "webpack --mode=production --progress",
"dist:dev": "webpack --mode=development --progress",
"wds": "webpack-dev-server --mode=production --progress",
"wds:dev": "webpack-dev-server --mode=development --progress",
"lint": "eslint src",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "npm run test:coverage && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/ezze/storekeeper"
},
"author": "Dmitriy Pushkov",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ezze/storekeeper/issues"
},
"dependencies": {
"@tweenjs/tween.js": "^18.5.0",
"bulma": "^0.8.0",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"dissemination": "^0.5.0",
"i18next": "^19.1.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-i18next": "^11.3.1",
"react-loadable": "^5.5.0",
"react-loading": "^2.0.3",
"react-router-dom": "^5.1.2",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-preset-mobx": "^2.0.0",
"copy-webpack-plugin": "^5.1.1",
"coveralls": "^3.0.9",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-ezze-react": "^0.8.1",
"eslint-plugin-react": "^7.18.0",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"jest": "^25.1.0",
"json-loader": "^0.5.4",
"koa": "^2.11.0",
"koa-static": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}