-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "fuse-webflow",
"version": "0.1.0",
"description": "Custom code of Fuse Webflow website.",
"homepage": "https://github.com/fuseio/fuse-webflow",
"repository": {
"type": "git",
"url": "git+https://github.com/fuseio/fuse-webflow.git"
},
"bugs": {
"url": "https://github.com/fuseio/fuse-webflow/issues"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "cross-env NODE_ENV=development node ./bin/build.js",
"build": "cross-env NODE_ENV=production node ./bin/build.js",
"lint": "eslint --ignore-path .gitignore ./src && prettier --check ./src",
"lint:fix": "eslint --ignore-path .gitignore ./src --fix",
"format": "prettier --write ./src"
},
"devDependencies": {
"cross-env": "^7.0.3",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"prettier": "^3.2.5"
},
"dependencies": {
"countup.js": "^2.8.0"
}
}