-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
142 lines (142 loc) · 4.84 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "asktoni-client",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "RedTn <redmond.tran@gmail.com>",
"private": true,
"scripts": {
"build": "node build/build.js",
"check-ci": "circleci config validate",
"ci-test": "npm run unit",
"clean": "rm -rf node_modules dist && yarn install",
"deploy": "rm -rf dist && npm run build && surge dist asktoni.surge.sh",
"deploy-staging": "rm -rf dist && npm run build && surge dist asktoni-staging.surge.sh",
"dev": "node build/dev-server.js",
"e2e": "node test/e2e/runner.js",
"lint": "eslint . --ext .js,.vue src config test/unit/specs test/e2e/specs",
"lint-ci": "eslint . --quiet --ext .js,.vue src config test/unit/specs test/e2e/specs",
"lint-fix": "npm run prettier && eslint . --fix --max-warnings 0 --ext .js,.vue src config test/unit/specs test/e2e/specs",
"lint-fix-simple": "eslint . --fix --ext .js,.vue src config test/unit/specs test/e2e/specs",
"prettier": "prettier --single-quote --tab-width 4 --print-width 100 --write \"{src,test/unit/specs,test/e2e/specs,config}/**/!(.eslintrc).js\"",
"start": "node build/dev-server.js",
"surge": "surge",
"test": "npm run unit && npm run e2e",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run"
},
"lint-staged": {
"{src,test/unit/specs,test/e2e/specs,config}/**/!(.eslintrc).js": [
"npm run prettier",
"eslint . --fix --ext .js,.vue src config test/unit/specs test/e2e/specs",
"git add"
]
},
"dependencies": {
"axios": "^0.21.2",
"faker": "^5.5.3",
"leaflet": "^1.2.0",
"leaflet.icon.glyph": "^0.2.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"vue": "^2.7.10",
"vue-material": "^0.8.1",
"vue-router": "^3.1.3"
},
"devDependencies": {
"@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.23.2",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.2",
"autoprefixer": "^9.8.8",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^5.1.1",
"babel-register": "^6.26.0",
"chai": "^4.3.10",
"chalk": "^2.0.1",
"chromedriver": "^77.0.0",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^6.0.3",
"cross-spawn": "^7.0.6",
"css-loader": "^0.28.7",
"cssnano": "^4.0.4",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-redtn": "0.1.2",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^7.20.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.21.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.1.3",
"html-webpack-plugin": "^3.0.0",
"http-proxy-middleware": "^2.0.7",
"husky": "^3.0.1",
"inject-loader": "^4.0.1",
"karma": "^4.0.1",
"karma-coverage": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.0",
"lint-staged": "^9.2.1",
"lolex": "^5.0.1",
"mocha": "^6.1.4",
"moment": "^2.29.4",
"nightwatch": "^1.1.12",
"node-sass": "^4.14.1",
"opn": "^6.0.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^4.0.2",
"phantomjs-prebuilt": "^2.1.14",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"selenium-server": "^3.5.3",
"semver": "^7.5.4",
"shelljs": "^0.8.5",
"sinon": "^7.2.7",
"sinon-chai": "^3.2.0",
"surge": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.0.1",
"vue-loader": "^14.0.2",
"vue-style-loader": "^4.0.1",
"vue-template-compiler": "^2.7.10",
"vue2-leaflet": "^0.0.58",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-middleware": "^3.6.2",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 5.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}