-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "bruception.github.io",
"version": "1.0.0",
"description": "My personal site.",
"type": "module",
"private": true,
"scripts": {
"build:prod": "webpack --mode=production",
"build": "webpack --mode=development",
"dev": "webpack serve --mode=development",
"lint": "eslint ./src/ts/**/*.ts",
"lint:fix": "eslint ./src/ts/**/*.ts --fix",
"pretty": "prettier ./ --check",
"pretty:fix": "prettier ./ --write",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bruception/Bruception.github.io.git"
},
"author": "Bruce Berrios",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bruception/Bruception.github.io/issues"
},
"homepage": "https://github.com/Bruception/Bruception.github.io#readme",
"devDependencies": {
"@babel/core": "7.17.2",
"@babel/preset-env": "7.16.11",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"babel-loader": "8.2.3",
"copy-webpack-plugin": "10.2.4",
"css-minimizer-webpack-plugin": "3.4.1",
"eslint": "8.9.0",
"eslint-webpack-plugin": "3.1.1",
"html-webpack-plugin": "5.5.0",
"prettier": "2.5.1",
"ts-loader": "9.2.6",
"typescript": "4.5.5",
"webpack": "5.68.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
},
"dependencies": {
"tippy.js": "6.3.7"
}
}