forked from pagopa/backoffice.io.italia.it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.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
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
{
"name": "backoffice.io.italia.it",
"author": "IO Team",
"repository": "https://github.com/pagopa/backoffice.io.italia.it",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "parcel --port 3000 src/index.html --out-dir build/debug",
"prebuild": "npm-run-all prebuild:*",
"prebuild:clean": "shx rm -rf build",
"prebuild:tsc": "tsc --noEmit",
"build": "parcel build src/index.html --out-dir build/release --public-url ./",
"test": "jest -coverage",
"lint": "tslint -p .",
"generate:definitions": "shx rm -rf ./generated/definitions && gen-api-models --client --request-types --response-decoders --api-spec https://raw.githubusercontent.com/pagopa/io-functions-backoffice/master/openapi/index.yaml --out-dir ./generated/definitions",
"generate": "npm-run-all generate:*",
"prettify": "prettier --write \"./**/*.{ts,tsx}\""
},
"dependencies": {
"bootstrap": "^4.5.3",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"fp-ts": "1.17.4",
"generated": "^0.0.3",
"i18next": "^19.8.4",
"io-ts": "1.8.5",
"jsonwebtoken": "^8.5.1",
"msal": "^1.4.4",
"react": "17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.7.3",
"react-router-dom": "^5.2.0",
"react-table": "^7.6.3",
"reactstrap": "^8.7.1",
"typeface-lora": "^1.1.13",
"typeface-roboto-mono": "^1.1.13",
"typeface-titillium-web": "^1.1.13"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.9",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.6",
"@types/react-table": "^7.0.26",
"cssnano": "^4.1.10",
"danger-plugin-digitalcitizenship": "^1.0.0",
"dotenv": "^8.2.0",
"italia-ts-commons": "^8.5.0",
"italia-tslint-rules": "^1.1.3",
"italia-utils": "^6.2.2",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"shx": "^0.3.3",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
},
"resolutions": {
"fp-ts": "1.17.4",
"io-ts": "1.8.5"
}
}