-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.77 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
{
"name": "picol",
"version": "0.0.1",
"description": "",
"author": "Jack Q <[email protected]>",
"repository": "https://github.com/Jack-Q/picol",
"scripts": {
"dev": "node web/build/dev-server.js",
"start": "node web/build/dev-server.js",
"build": "node web/build/build.js",
"core": "npm run build:core && node dist/core/cli",
"dev:core": "tsc -p core -w",
"build:core": "tsc -p core"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"av-ts": "^0.10.0",
"keen-ui": "^1.0.1",
"lodash": "^4.17.11",
"monaco-editor": "^0.14.3",
"vue": "^2.5.17",
"vue-class-component": "^6.2.0",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.4",
"autoprefixer": "^9.1.5",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"chalk": "^2.4.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.0",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^3.0.0",
"rimraf": "^2.6.2",
"semver": "^5.5.1",
"shelljs": "^0.8.2",
"ts-loader": "^5.1.1",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"typescript": "^3.0.3",
"uglifyjs-webpack-plugin": "^2.0.0",
"url-loader": "^1.1.1",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"vue-ts-loader": "0.0.3",
"webpack": "^4.19.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-dev-middleware": "^3.3.0",
"webpack-hot-middleware": "^2.24.0",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.0.0"
},
"browserslist": [
"last 2 versions"
],
"semistandard": {
"ignore": [
"/dist",
"/build",
"web/build",
"web/config"
]
},
"license": "MIT"
}