forked from justsso/coconut-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.67 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
82
83
{
"name": "coconut-ui",
"version": "1.0.1",
"description": "",
"main": "src/index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production webpack --config src/config/webpack.prod.js --color --progress",
"start": "cross-env NODE_ENV=production webpack-dev-server --config src/config/webpack.dev.js --color",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config src/config/webpack.dev.js --color",
"lint": "npx eslint ./src --ext .js,.ts,tsx",
"stylelint": "npx stylelint src/*.less ",
"eslint:fix": "eslint --fix"
},
"keywords": [
"ui"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-react": "^7.10.1",
"@types/classnames": "^2.2.8",
"@types/mockjs": "^1.0.2",
"@types/webpack": "^4.4.34",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"@uiw/react-code-preview": "^1.11.5",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.5",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^2.0.2",
"codemirror": "^5.55.0",
"cross-env": "^5.2.0",
"css-loader": "^3.6.0",
"eslint": "^7.2.0",
"eslint-config-alloy": "^3.7.2",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.11.3",
"less-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.7.0",
"mockjs": "^1.1.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"stylelint": "^13.6.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@loadable/component": "^5.13.1",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.15",
"@types/loadable__component": "^5.13.0",
"@types/node": "^12.0.10",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/react-transition-group": "^4.2.4",
"animate.css": "^4.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^4.4.1"
}
}