-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 2.88 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
108
109
110
111
112
113
{
"name": "@nordicplayground/TheNordicChallenge",
"version": "0.0.0-development",
"description": "A single-page application (SPA) developed using TypeScript to play a game of nRF Robot Wars.",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"prepare": "husky install",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicPlayground/TheNordicChallenge.git"
},
"bugs": {
"url": "https://github.com/NordicPlayground/TheNordicChallenge/issues"
},
"homepage": "https://github.com/NordicPlayground/TheNordicChallenge#readme",
"keywords": [
"nrf-asset-tracker",
"iot",
"web-app",
"aws",
"spa",
"react",
"vite"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@nordicsemiconductor/from-env": "1.0.2",
"bootstrap": "5.2.1",
"chart.js": "^3.9.1",
"color": "4.2.3",
"date-fns": "^2.29.3",
"feather-icons": "4.29.0",
"react": "18.2.0",
"react-chartjs-2": "^4.3.1",
"react-circular-progressbar": "^2.1.0",
"react-dom": "18.2.0",
"react-native": "^0.71.7",
"react-native-check-box": "^2.1.7",
"react-router-dom": "6.4.0",
"react-select": "^5.7.3"
},
"devDependencies": {
"@nordicsemiconductor/asset-tracker-cloud-code-style": "11.0.125",
"@swc/core": "1.3.2",
"@swc/jest": "0.2.22",
"@types/color": "3.0.3",
"@types/feather-icons": "4.7.0",
"@types/jest": "29.0.3",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@vitejs/plugin-react": "2.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-no-restricted-imports": "0.0.0",
"handlebars": "4.7.7",
"jest": "29.0.3",
"vite": "3.1.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"src/**/*.{ts,tsx}": [
"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$",
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"^utils\\/(.*)\\.js$": "<rootDir>/src/utils/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"extensionsToTreatAsEsm": [
".ts",
".tsx"
],
"globals": {
"ts-jest": {
"useESM": true
}
}
}
}