-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.51 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
79
80
81
{
"name": "rui888",
"version": "0.1.1",
"description": "A React.js UI Toolkit for Web",
"main": "dist/lib/index.js",
"files": [
"/dist/**/*"
],
"types": "dist/lib/index.d.ts",
"scripts": {
"lint": "eslint lib test",
"prettier": "prettier lib test --write",
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.dev.js",
"build": "npm run lint && cross-env NODE_ENV=production webpack --config webpack.prod.js",
"test": "cross-env NODE_ENV=test jest --config=jest.config.js --runInBand",
"ci": "cross-env NODE_ENV=test JEST_JUNIT_OUTPUT=./test-results/jest/results.xml jest --config=jest.config.ci.js"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangpeng1994/RUI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wangpeng1994/RUI/issues"
},
"homepage": "https://github.com/wangpeng1994/RUI#readme",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.4",
"@types/react-test-renderer": "^16.8.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^24.8.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^3.1.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"node-sass": "^4.12.0",
"prettier": "2.1.2",
"react-router-dom": "^5.0.1",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"svg-sprite-loader": "^4.1.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.6.0"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}