-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 989 Bytes
/
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
{
"version": "0.0.1",
"description": "",
"scripts": {
"dev": "pack dev",
"build": "pack build",
"publish": "node ./scripts/build.js"
},
"license": "ISC",
"dependencies": {
"@types/react-dom": "^16.9.5",
"@types/react": "^16.4.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"antd": "^4.8.2",
"@ant-design/icons": "^4.3.0",
"agora-rtc-sdk": "^3.2.3",
"mobx": "5.15.7",
"mobx-react-lite": "2.2.2",
"react-copy-to-clipboard": "^5.0.2"
},
"devDependencies": {
"packjs": "latest",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"babel-plugin-import": "^1.13.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,less,css,json,md}": [
"prettier --write",
"git add"
]
}
}