-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "@fuseio/charge-webflow",
"version": "0.0.0",
"description": "Custom code of Charge Webflow website",
"homepage": "https://github.com/fuseio/charge-webflow#readme",
"license": "ISC",
"keywords": [],
"author": {
"name": "Fuse",
"url": "https://fuse.io/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuseio/charge-webflow.git"
},
"bugs": {
"url": "https://github.com/fuseio/charge-webflow/issues"
},
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"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",
"check": "tsc --noEmit",
"format": "prettier --write ./src",
"test": "playwright test",
"test:ui": "playwright test --ui",
"release": "changeset publish",
"update": "pnpm update -i -L -r"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.1",
"@finsweet/eslint-config": "^2.0.7",
"@finsweet/tsconfig": "^1.3.4",
"@playwright/test": "^1.42.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"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",
"typescript": "^5.3.3"
},
"dependencies": {
"@finsweet/ts-utils": "^0.40.0"
},
"engines": {
"pnpm": ">=9"
}
}