forked from crowbartools/MixrElixrEmotes-EmbeddedChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.56 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
{
"name": "elixremotes",
"version": "1.0.0",
"description": "Injectable browser script for displaying MixrElixr emotes in Mixer's chat.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build.prod": "webpack --config webpack.config.js -p",
"build.esnext": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build.all": "npm run build.prod && npm run build.esnext",
"test": "karma start karma.config.js"
},
"author": "ebiggz",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/jasmine": "2.8.7",
"@types/node": "7.0.0",
"@types/jquery": "^3.3.31",
"awesome-typescript-loader": "5.2.0",
"jasmine-core": "3.1.0",
"karma": "^4.4.1",
"karma-jasmine": "1.1.2",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "3.0.0",
"source-map-loader": "0.2.3",
"tslint": "5.17.0",
"tslint-loader": "3.6.0",
"typescript": "3.5.1",
"webpack": "4.12.0",
"webpack-cli": "3.0.8"
},
"dependencies": {
"axios": "^0.19.0",
"jquery": "^3.4.1"
}
}