-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "lib-api",
"version": "0.0.1",
"description": "Library of api for consent app",
"keywords": [
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:Akash-M/consent-application-react.git",
"directory": "packages/frontend/lib-api"
},
"author": "Akash-M <akash.manjunath@gmail.com>",
"engines": {
"node": ">=v14.17.6"
},
"scripts": {
"lint:prettier": "prettier --write \"./**/*.{js,jsx,json}\"",
"lint:ts": "run exec:eslint --cache-file $(pwd)/.eslintcache $(pwd)",
"lint": "yarn lint:ts && yarn lint:prettier",
"prettier": "prettier -c \"src/**/*.{js,ts,tsx}\"",
"test:unit": "jest --config test/unit/jest.config.js --coverage",
"test:unit:update": "yarn test:unit -u",
"test:unit:watch": "yarn test:unit --watch"
},
"dependencies": {
"typescript": "^4.3.5"
},
"devDependencies": {
"$": "link:./src",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.19",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"consent-app-react": "workspace:*",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"uuid": "^8.3.2"
}
}