-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 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
{
"name": "digital-art-layout",
"private": true,
"version": "0.0.0",
"homepage": "https://veluat.github.io/digital-art-layout/",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier --write src",
"lint": "eslint --fix src/**/*.{tsx,ts,jsx,js} --no-error-on-unmatched-pattern && stylelint --fix src/{,*/}*.{scss,css} --allow-empty-input",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@types/react-scroll": "^1.8.10",
"@types/styled-components": "^5.1.34",
"gh-pages": "^6.1.1",
"react": "^18.2.0",
"react-awesome-reveal": "^4.2.8",
"react-curved-text": "^3.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"react-scroll": "^1.9.0",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@it-incubator/eslint-config": "^1.0.2",
"@it-incubator/prettier-config": "^0.1.2",
"@it-incubator/stylelint-config": "^1.0.3",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-curved-text": "^2.0.3",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"stylelint": "^16.3.1",
"typescript": "^5.4.5",
"vite": "^5.2.9"
}
}