-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 921 Bytes
/
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
{
"name": "webflow-vite",
"version": "0.0.1",
"author": "armandsalle <armand.salle@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"clean": "rimraf -rf dist",
"lint:fix": "eslint ./src --ext .ts,.tsx --fix"
},
"devDependencies": {
"@types/jquery": "^3.5.13",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"jquery": "^3.6.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-plugin-eslint": "^1.3.0"
},
"dependencies": {
"gsap": "^3.9.1"
}
}