-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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": "private-music-react",
"version": "1.0.0",
"description": "A front-end impl of Private Cloud Music by React and Antd",
"author": "Zijin Xiao <ZijinX@outlook.com>",
"repository": "BearKidsTeam/private-music-react",
"license": "MIT",
"entry": {
"index": "./index.jsx"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.15.5",
"axios": "^0.21.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"atool-build": "^1.0.8",
"atool-test-mocha": "^0.2.1",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.0.1",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-runtime": "^6.9.2",
"dora": "^0.6.1",
"dora-plugin-webpack": "^1.0.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"expect": "^26.6.2",
"pre-commit": "1.x",
"redbox-react": "^1.2.6"
},
"pre-commit": [
"lint"
],
"scripts": {
"build": "atool-build",
"lint": "eslint --ext .js,.jsx src/",
"start": "dora --plugins webpack",
"test": "atool-test-mocha ./**/__tests__/*-test.js"
}
}