-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
78 lines (78 loc) · 2.1 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
{
"name": "agora-video-call",
"description": "Agora Video Call in VanillaJs",
"version": "2.5.2",
"repository": {
"type": "git",
"url": "https://github.com/AgoraIO/Basic-Video-Call/tree/master/Group-Video/OpenVideoCall-Web"
},
"license": "MIT",
"scripts": {
"test": "jest ./test",
"lint": "eslint src/**/*.{js,jsx} --fix",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{css,scss,json,md,js,jsx}": [
"prettier --write",
"git add"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"agora-rtc-sdk": "^2.5.2",
"bulma": "^0.6.1",
"bulma-checkradio": "^0.1.11",
"bulma-switch": "^0.1.12",
"jquery": "^3.2.1",
"js-cookie": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.5.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^3.0.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^7.2.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"prettier": "^1.16.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"terser-webpack-plugin": "^1.2.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-serve": "^3.0.0-beta.3"
}
}