-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "fdk-store",
"version": "v3.0.41",
"description": "FPI Store bridging library",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc -m es6 --outDir lib",
"build:watch": "tsc -m es6 --outDir lib --watch",
"test": "jest --config jest.config.js --json --outputFile='./coverage/coverage.json'",
"test:coverage": "jest --coverage",
"doc": "typedoc --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-markdown",
"local": "webpack --watch",
"generate": "graphql-codegen",
"format": "prettier --write 'src/**/*.ts' '!src/types/**/*.ts'"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@types/qs": "^6.9.7",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"prettier": "^3.0.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"buffer": "^6.0.3",
"cross-fetch": "^4.0.0",
"crypto-js": "^4.1.1",
"graphql": "^16.9.0",
"qs": "^6.11.2",
"redux": "^4.2.1",
"url": "^0.11.0"
}
}