-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@xsolla/pay-station-sdk",
"version": "0.0.28",
"description": "Pay Station SDK",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"test": "karma start --single-run",
"test:dev": "karma start --auto-watch",
"lint": "npm run eslint:lint && npm run stylelint:lint",
"eslint:lint": "eslint \"src/**/*.{ts,tsx}\"",
"stylelint:lint": "stylelint \"src/**/*.scss\"",
"prepare": "husky install",
"lib-publish": "npm run build && npm test && npm run lint && npm publish --access public",
"prettier": "prettier --write ./src"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"author": "Xsolla Payments Team <[email protected]>",
"license": "ISC",
"files": [
"dist/**/*",
"lib/**/*"
],
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jasmine": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"css-loader": "^6.8.1",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-webpack-plugin": "^4.0.1",
"husky": "^8.0.3",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.5.4",
"lint-staged": "^14.0.1",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "3.0.2",
"raw-loader": "^4.0.2",
"reflect-metadata": "^0.1.13",
"resolve-url-loader": "^5.0.0",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"stylelint": "^15.10.3",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-order": "^6.0.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.82.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"currency-format": "^1.0.13",
"i18next": "^23.4.6",
"tsyringe": "^4.8.0"
}
}