-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 719 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 719 Bytes
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
{
"name": "vite-javascript-webflow",
"version": "0.0.1",
"author": "armandsalle <armand.salle@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rimraf -rf dist",
"lint:fix": "eslint ./src --ext .js,.jsx --fix"
},
"devDependencies": {
"eslint": "^8.7.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",
"vite": "^2.7.2",
"vite-plugin-eslint": "^1.3.0",
"eslint-config-prettier": "^8.3.0"
},
"dependencies": {
"gsap": "^3.9.1"
}
}