-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "@curo/calculator-demo",
"version": "0.1.0",
"description": "Demo showcasing various Curo financial calculator features",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/andrewmurphy353/curo-calculator-demo.git"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint --fix ./src/**/*.ts",
"build": "webpack --config webpack.config.js"
},
"author": {
"name": "Andrew Murphy",
"email": "andrew.murphy@confido.ie",
"url": "https://github.com/andrewmurphy353"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewmurphy353/curo-calculator-demo/issues"
},
"homepage": "https://github.com/andrewmurphy353/curo-calculator-demo#readme",
"dependencies": {
"@curo/calculator": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.4.4",
"eslint": "^8.47.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}