-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 2.82 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@distributeaid/needs-assessment",
"version": "0.0.0-development",
"description": "A web application that we use to assess needs of the aid organizations we support.",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"prepare": "husky install",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DistributeAid/needs-assessment.git"
},
"bugs": {
"url": "https://github.com/DistributeAid/needs-assessment/issues"
},
"homepage": "https://github.com/DistributeAid/needs-assessment#readme",
"keywords": [
"distribute-aid",
"web-app",
"spa",
"react",
"vite",
"needs-assessment"
],
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"dependencies": {
"@amcharts/amcharts5": "5.10.5",
"@nordicsemiconductor/from-env": "2.0.0",
"ajv": "8.17.1",
"ajv-formats": "2.1.1",
"ajv-keywords": "5.1.0",
"bootstrap": "5.3.3",
"classnames": "2.5.1",
"date-fns": "2.30.0",
"fast-deep-equal": "3.1.3",
"feather-icons": "4.29.2",
"inter-ui": "3.19.3",
"jsonata": ">=1.8.6 <2.0.0",
"lodash-es": "4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2"
},
"devDependencies": {
"@nordicsemiconductor/asset-tracker-cloud-code-style": "12.0.8",
"@nordicsemiconductor/object-to-env": "5.0.0",
"@swc/jest": "0.2.36",
"@types/classnames": "2.3.1",
"@types/feather-icons": "4.29.4",
"@types/jest": "29.5.13",
"@types/lodash": "4.17.7",
"@types/react": "18.3.7",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "3.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-no-restricted-imports": "0.0.0",
"handlebars": "4.7.8",
"jest": "29.7.0",
"vite": "4.5.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts,.jsx,.tsx"
],
"*.{md,json,yaml,yml,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"prettier": "@nordicsemiconductor/asset-tracker-cloud-code-style/.prettierrc",
"jest": {
"testRegex": ".+\\.spec\\.ts$",
"moduleNameMapper": {
"^utils/(.*)$": "<rootDir>/src/utils/$1",
"^hooks/(.*)$": "<rootDir>/src/hooks/$1",
"^schema/(.*)$": "<rootDir>/src/schema/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"extensionsToTreatAsEsm": [
".ts",
".tsx"
]
}
}