-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.92 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
{
"name": "group6",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/dillanmerchant/cse110-w21-group6.git",
"author": "Winter 2021 CSE 110 Group 6",
"license": "MIT",
"browserslist": [
"defaults"
],
"scripts": {
"start": "yarn run webpack serve --mode=development --open",
"test": "jest --verbose --coverage",
"lint": "eslint --no-error-on-unmatched-pattern './src/**/*.js' && stylelint --allow-empty-input './src/**/*.css' && htmlhint --config ./.htmlhintrc './src/**/*.html'",
"lint:fix": "eslint --fix --no-error-on-unmatched-pattern './src/**/*.js' && stylelint --allow-empty-input './src/**/*.css' && htmlhint --config ./.htmlhintrc './src/**/*.html'",
"build": "yarn run webpack --mode=production --config webpack.config.js",
"ci": "yarn run lint && yarn run test && yarn run build",
"docs": "jsdoc -r -c ./jsdoc.config.js ./src"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.2",
"css-minimizer-webpack-plugin": "^1.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.5.2",
"html-loader": "^2.0.0",
"html-webpack-plugin": "^5.1.0",
"htmlhint": "^0.14.2",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"mini-css-extract-plugin": "^1.3.7",
"postcss": "^8.2.7",
"postcss-loader": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"stylelint": "^13.10.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}