-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.51 KB
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
{
"name": "code-review-frontend",
"version": "1.7.4",
"repository": "https://github.com/mozilla/code-review",
"author": "",
"description": "Mozilla Code Review frontend",
"main": "index.js",
"dependencies": {
"axios": "^1.6.5",
"bulma": "^0.9.4",
"chartist": "^0.11.4",
"lodash": "^4.17.21",
"vue": "^2.7.15",
"vue-chartist": "^2.3.1",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.7.16",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.20.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.0",
"process": "^0.11.10",
"style-loader": "^3.3.4",
"vue-loader": "^15.11.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^5.10.0"
},
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"start": "webpack serve --mode=development",
"lint": "eslint *.js src/**/*.js src/**/*.vue",
"lint:fix": "eslint --fix *.js src/**/*.js src/**/*.vue"
},
"keywords": [],
"license": "MPLv2"
}