generated from finsweet/developer-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"name": "@finsweet/developer-starter",
"version": "1.0.0",
"description": "Developer starter template for Finsweet projects.",
"homepage": "https://github.com/finsweet/developer-starter#readme",
"license": "ISC",
"keywords": [],
"author": {
"name": "Finsweet",
"url": "https://www.finsweet.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finsweet/developer-starter.git"
},
"bugs": {
"url": "https://github.com/finsweet/developer-starter/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": "pnpm playwright test",
"test:headed": "pnpm playwright test --headed",
"release": "changeset publish",
"update": "pnpm update -i -L -r"
},
"devDependencies": {
"@changesets/changelog-git": "^0.1.13",
"@changesets/cli": "^2.25.0",
"@finsweet/eslint-config": "^1.1.5",
"@playwright/test": "^1.27.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/jquery": "^3.5.14",
"@types/youtube": "^0.0.47",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"cross-env": "^7.0.3",
"esbuild": "^0.15.10",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@finsweet/ts-utils": "^0.33.2",
"@finsweet/tsconfig": "^1.2.0"
}
}