-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
99 lines (99 loc) · 3.49 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
{
"name": "ehunter",
"version": "2.8.0",
"description": "A Vue.js project",
"author": "Alex Chen <[email protected]>",
"private": true,
"scripts": {
"dev": "webpack --config build/webpack.dev.conf.js",
"build": "webpack --config build/webpack.prod.conf.js",
"publish": "npm run test && npm run build && web-ext build -s dist -a publish_output",
"publish_no_test": "npm run build && web-ext build -s dist -a publish_output --overwrite-dest",
"test": "npm run unit",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"generate-json-webpack-plugin": "^0.3.1",
"html-loader": "^0.5.5",
"html-res-webpack-plugin": "^4.0.4",
"html-webpack-plugin": "^3.2.0",
"json": "^9.0.6",
"karma-babel-preprocessor": "^8.0.0",
"karma-chrome-launcher": "^2.2.0",
"less": "^2.7.2",
"less-loader": "^4.0.0",
"markdown-it": "^8.4.2",
"markdown-it-emoji": "^1.4.0",
"muse-ui": "^2.0.0-rc.5",
"react-native-storage": "0.2.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"twemoji": "^12.0.1",
"typescript": "^3.4.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"vue": "^2.6.10",
"vuex": "^3.1.0",
"web-ext": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-stage-0": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/runtime": "^7.4.3",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"chromedriver": "^2.46.0",
"connect-history-api-fallback": "^1.6.0",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"inject-loader": "^4.0.1",
"karma": "^4.1.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.5",
"lolex": "^3.1.0",
"mocha": "^6.1.3",
"node-sass": "^4.12.0",
"opn": "^4.0.1",
"ora": "^3.4.0",
"phantomjs-prebuilt": "^2.1.16",
"sass-loader": "^7.1.0",
"selenium-server": "^3.141.59",
"semver": "^6.0.0",
"shelljs": "^0.8.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"url-loader": "^1.1.2",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
}
}