-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.58 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
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
{
"name": "apda",
"version": "1.0.0",
"description": "Standings site for APDA",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --progress --color --mode=development",
"watch": "webpack --config webpack.config.js --watch --mode=development",
"lint": "eslint webpack.config.js 'apda/assets/js/**/*.js'",
"lint:fix": "eslint webpack.config.js 'apda/assets/js/**/*.js' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MIT-Tab/black-rod.git"
},
"author": "Rodda John",
"license": "MIT",
"engines": {
"node": "20.19.4"
},
"bugs": {
"url": "https://github.com/MIT-Tab/black-rod/issues"
},
"homepage": "https://github.com/MIT-Tab/black-rod#readme",
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"autoprefixer": "^10.4.21",
"babel-loader": "^9.2.1",
"css-loader": "^6.11.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"less": "^4.4.1",
"less-loader": "^11.1.4",
"postcss": "^8.5.6",
"postcss-loader": "^7.3.4",
"precss": "4.0.0",
"prettier": "^3.6.2",
"sass": "^1.91.0",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.4",
"webpack": "^5.101.3",
"webpack-bundle-tracker": "^1.8.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"bootstrap": "4.6.2",
"bootstrap-datepicker": "1.9.0",
"edmonds-blossom": "^1.0.0",
"jquery": "^3.7.1",
"jquery-ui": "^1.14.1",
"papaparse": "^5.5.3",
"popper.js": "1.16.1",
"select2": "4.0.11"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"no-bitwise": "off",
"no-alert": "off",
"max-len": [
"error",
120
],
"import/no-unresolved": "off"
},
"env": {
"browser": true,
"jquery": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"printWidth": 80
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
">0.5%",
"last 2 versions",
"not dead"
]
}
}
]
]
}
}