-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
92 lines (92 loc) · 2.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "keysave",
"productName": "KeySAVe",
"version": "1.5.3",
"description": "A cross platform KeySAV based on GitHub Electron for all your Generation VI Pokémon decryption needs.",
"repository": {
"type": "git",
"url": "https://github.com/Cu3PO42/KeySAVe.git"
},
"main": "./serverlib",
"scripts": {
"clean": "rimraf ./dist",
"start": "cross-env NODE_ENV=development webpack-dev-server --progress --color",
"build:prod": "npm run clean && cross-env NODE_ENV=production webpack",
"build:dev": "npm run clean && cross-env NODE_ENV=development webpack",
"precommit": "lint-staged"
},
"author": "Cu3PO42",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.15.0-rc.2",
"json-loader": "^0.5.4",
"lint-staged": "^6.0.1",
"node-sass": "^4.14.1",
"preload-webpack-plugin": "^2.2.0",
"prettier": "1.10.2",
"resolve-url-loader": "^2.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"sw-precache-webpack-plugin": "^0.11.4",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"copy-to-clipboard": "^3.0.8",
"dashbars": "github:cu3po42/dashbars#35b6da8b85d5ed45805ad2b0c189220e644b6450",
"handlebars": "^4.0.11",
"handlebars-helper-moment": "github:cu3po42/handlebars-helper-moment#4a38922cbedfb34f8fee470488815f7ed8bfc00f",
"immutable": "^3.8.2",
"jszip": "^3.1.5",
"keysavcore": "0.23.0-alpha.0",
"lodash.debounce": "^4.0.6",
"material-ui": "^0.19.4",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"react-router": "^3",
"react-select": "1.1.0",
"react-swipeable-views": "^0.12.10",
"redux": "^3.5.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"reselect": "^2",
"sanitize-filename": "^1.6.0"
},
"lint-staged": {
"*.{js,scss}": [
"prettier --write",
"git add"
]
},
"devEngines": {
"node": "4.x || 5.x || 6.x || 7.x || 8.x",
"npm": "2.x || 3.x || 4.x || 5.x"
}
}