-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "kieranoneill.com",
"version": "1.6.0",
"description": "A website about me (Kieran O'Neill).",
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/kieranroneill/kieranoneill.com"
},
"author": {
"name": "Kieran O'Neill",
"email": "[email protected]",
"url": "https://kieranoneill.com"
},
"license": "MIT",
"homepage": "https://kieranroneill.github.io/kieranoneill.com",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "cross-env TS_NODE_PROJECT=\"webpack/tsconfig.webpack.json\" webpack --config webpack/webpack.config.ts --env environment=production",
"lint": "eslint src/ --ext .js,.ts,.tsx",
"prepare": "husky install",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,ts,tsx}\"",
"start": "cross-env TS_NODE_PROJECT=\"webpack/tsconfig.webpack.json\" webpack serve --config webpack/webpack.config.ts --env environment=development",
"test": "exit 0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/autoprefixer": "^9.7.2",
"@types/node": "^14.0.13",
"@types/react": "^16.9.36",
"@types/react-dom": "^18.2.18",
"@types/react-helmet": "^6.0.0",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"autoprefixer": "^9.8.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.33.2",
"handlebars": "^4.7.8",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss-loader": "^3.0.0",
"prettier": "^2.8.4",
"style-loader": "^1.2.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.2",
"typescript": "4.9.5",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@arwes/animation": "^1.0.0-alpha.19",
"@arwes/core": "^1.0.0-alpha.19",
"@arwes/design": "^1.0.0-alpha.19",
"@arwes/sounds": "^1.0.0-alpha.19",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.1",
"@kieranroneill/terminal-in-react": "^4.3.7",
"animejs": "^3.2.1",
"howler": "^2.2.3",
"i18next": "^23.7.11",
"polished": "^4.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-i18next": "^14.0.0",
"react-responsive": "^9.0.2",
"styled-components": "^6.1.2"
},
"resolutions": {
"**/**/react-is": ">= 16.8.0"
}
}