forked from DestinyItemManager/DIM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.87 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.87 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dim",
"version": "4.3.0",
"description": "An item manager for Destiny.",
"main": "app/index.html",
"engines": {
"node": "6.9.2"
},
"scripts": {
"test": "echo \"No tests\"",
"dev-chrome": "npm start -s",
"generate-css": "echo \"No need to run this any more. Just run 'npm start'!\n\"",
"lint": "eslint --fix . && htmlhint",
"bundle": "webpack --config ./config/webpack.js --hide-modules",
"build-release": "npm run bundle -s -- --env=release",
"build-beta": "npm run bundle -s -- --env=beta",
"build-dev": "npm run bundle -s -- --env=dev --watch",
"start": "npm run build-dev -s",
"publish-beta": "npm run build-beta -s && ruby ./badfiles.rb && grunt publish_beta",
"publish-release": "npm run build-release -s && ruby ./badfiles.rb && grunt publish_release",
"server": "webpack-dev-server --config ./config/webpack.js --env=dev"
},
"repository": {
"type": "git",
"url": "https://github.com/DestinyItemManager/DIM.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DestinyItemManager/DIM/issues"
},
"homepage": "https://destinyitemmanager.com",
"browserslist": [
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Firefox versions",
"last 1 Safari versions",
"iOS >= 9",
"last 2 Edge versions"
],
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.21.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-angularjs-annotate": "^0.7.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.14",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.1",
"eslint": "^4.2.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-angular": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"exports-loader": "^0.6.3",
"extract-loader": "^0.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-rsync": "^2.0.1",
"grunt-webstore-upload": "^0.9.12",
"handlebars": "^4.0.6",
"handlebars-loader": "^1.4.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.29.0",
"htmlhint": "^0.9.13",
"imports-loader": "^0.7.0",
"load-grunt-tasks": "^3.5.0",
"node-sass": "^4.5.0",
"notify-webpack-plugin": "^1.0.0",
"postcss-loader": "^2.0.0",
"raw-loader": "^0.5.1",
"request": "^2.73.0",
"sass-loader": "^6.0.2",
"sqlite3": "^3.1.4",
"style-loader": "^0.18.0",
"uglify-js": "^2.7.0",
"unzip": "^0.1.11",
"url-loader": "^0.5.7",
"webpack": "^3.1.0",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "^2.5.1",
"workbox-webpack-plugin": "^1.0.1"
},
"dependencies": {
"@destiny-item-manager/zip.js": "github:DestinyItemManager/zip.js",
"@uirouter/angularjs": "^1.0.5",
"angular": "^1.6.5",
"angular-aria": "^1.6.5",
"angular-duration-format": "^1.0.1",
"angular-hotkeys": "^1.7.0",
"angular-messages": "^1.6.5",
"angular-native-dragdrop": "^1.2.2",
"angular-promise-tracker": "^2.2.2",
"angular-translate": "^2.13.1",
"angular-translate-interpolation-messageformat": "^2.13.1",
"angularjs-slider": "^5.9.0",
"angularjs-toaster": "github:DestinyItemManager/AngularJS-Toaster",
"babel-polyfill": "^6.20.0",
"components-font-awesome": "^4.7.0",
"drag-drop-webkit-mobile": "^1.4.1",
"file-loader": "^0.11.1",
"idb-keyval": "^2.3.0",
"indexeddbshim": "^2.2.1",
"jquery": "^3.1.1",
"jquery-textcomplete": "^1.8.1",
"jquery-ui": "^1.12.1",
"messageformat": "^1.0.2",
"ng-dialog": "^1.3.0",
"ng-http-rate-limiter": "^1.0.1",
"simple-query-string": "^1.3.0",
"sql.js": "github:DestinyItemManager/sql.js",
"underscore": "^1.8.3",
"uuid": "^3.1.0"
}
}