-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.31 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "webcode",
"version": "1.0.0",
"description": "web ide",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --color --open --config scripts/webpack.config.js",
"build": "webpack --color --progress --config scripts/webpack.production.js",
"test": "",
"lint": "eslint src --fix --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MANSOUL/webcode.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MANSOUL/webcode/issues"
},
"homepage": "https://github.com/MANSOUL/webcode#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/chart.js": "^2.8.10",
"@types/lodash": "^4.14.144",
"@types/prop-types": "^15.7.3",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"autoprefixer": "^9.7.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": "^10.0.0-1",
"monaco-editor-webpack-plugin": "^1.8.1",
"postcss-loader": "^3.0.0",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^1.18.2",
"style-loader": "^1.0.0",
"typescript": "^3.6.4",
"url-loader": "^2.3.0",
"webpack": "^4.41.1",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"ace-builds": "^1.4.7",
"ansi-escapes": "^4.3.0",
"babel-polyfill": "^6.26.0",
"chart.js": "^2.9.2",
"clsx": "^1.0.4",
"hash.js": "^1.1.7",
"is-image": "^3.0.0",
"jss": "^10.0.0",
"jss-preset-default": "^10.0.0",
"lodash": "^4.17.15",
"monaco-editor": "^0.19.0",
"monaco-editor-textmate": "^2.2.1",
"monaco-textmate": "^3.0.1",
"monaco-vscode-textmate-theme-converter": "^0.1.0",
"onigasm": "^2.2.4",
"param-case": "^3.0.3",
"query-string": "^6.9.0",
"rc-progress": "^2.5.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-svg": "^11.0.5",
"redux": "^4.0.4",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"vscode-icons-js": "^9.3.0",
"xterm": "^4.3.0",
"xterm-addon-fit": "^0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"browserslist": [
"last 2 version",
"> .5%"
]
}