-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.84 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@boltpay/bolt-js",
"private": false,
"description": "BoltJS connects your frontend to the Bolt ecosystem",
"version": "0.2.9",
"license": "MIT",
"author": "Bolt",
"module": "./build/dist/bolt.js",
"type": "module",
"sideEffects": [
"*.css"
],
"exports": {
".": {
"import": "./build/dist/bolt.js",
"types": "./build/dist/index.d.ts"
},
"./dist/": {
"import": "./build/dist/"
}
},
"types": "./build/dist/index.d.ts",
"scripts": {
"dev:client": "vite --host",
"dev:server": "tsx --watch server/index.ts",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build": "rimraf build/**/* && tsc && vite build && dts-bundle-generator -o ./build/dist/index.d.ts ./src/index.ts && copyfiles ./package.json build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint:scripts": "eslint . --ext .ts",
"lint:styles": "stylelint \"src/**/*.{css,scss}\"",
"format:scripts": "prettier . --write",
"format:styles": "stylelint \"src/**/*.{css,scss}\" --fix",
"format": "npm run format:scripts && npm run format:styles",
"prepare": "npm run build",
"uninstall-husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"concurrently": "^9.2.0",
"copyfiles": "^2.4.1",
"dotenv": "^17.2.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"express": "^5.1.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^15.4.3",
"postcss": "^8.5.3",
"postcss-scss": "^4.0.9",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"stylelint": "^16.14.1",
"stylelint-config-recommended": "^15.0.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.3",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vite": "^6.3.5",
"vitest": "^3.0.7"
},
"keywords": [
"bolt",
"bolt-js",
"boltpay",
"ecommerce",
"gaming",
"charge",
"checkout",
"wallet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BoltApp/bolt-frontend-sdk.git"
},
"bugs": {
"url": "https://github.com/BoltApp/bolt-frontend-sdk/issues"
},
"homepage": "https://github.com/BoltApp/bolt-frontend-sdk#readme",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"vitest related --run"
],
"*.{css,scss}": [
"stylelint --fix"
]
},
"volta": {
"node": "22.18.0"
},
"dependencies": {
"@types/cors": "^2.8.19",
"cors": "^2.8.5"
}
}