-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
95 lines (95 loc) · 2.97 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
{
"name": "destiny-loadout-builder",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"dev-open-browser": "npm run open-browser && npx local-ssl-proxy --source 4001 --target 3001 --cert localhost.pem --key localhost-key.pem & next dev -p 3001",
"dev": "next dev --experimental-https -p 4001",
"open-browser": "open https://localhost:4001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest --silent",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test-test": "jest --env=node --colors --coverage test",
"find-circular-dependencies": "npx madge --circular --extensions ts ./",
"generate": "npx ts-node src/scripts/generation/generate.ts",
"dummy": "npx ts-node src/utils/dummy",
"generateModCombinations": "npx ts-node src/scripts/generation/modCombinations/generateModCombinations.ts",
"format": "npx prettier --write \"**/*.{js,ts}\""
},
"dependencies": {
"@destinyitemmanager/dim-api-types": "1.23.0",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/sortable": "7.0.2",
"@dnd-kit/utilities": "3.2.1",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@fontsource/roboto": "4.5.8",
"@mui/icons-material": "5.15.18",
"@mui/lab": "^5.0.0-alpha.162",
"@mui/material": "5.15.6",
"@reduxjs/toolkit": "1.8.6",
"@types/react-redux": "7.1.24",
"@vercel/analytics": "0.1.11",
"array-move": "4.0.0",
"autosuggest-highlight": "3.3.4",
"axios": "1.1.3",
"bungie-api-ts-no-const-enum": "0.0.8",
"date-fns": "2.29.3",
"dexie": "3.2.2",
"fast-equals": "^5.0.1",
"font-color-contrast": "^11.1.0",
"immutability-helper": "3.1.1",
"lodash": "4.17.21",
"lodash.compact": "^3.0.1",
"memoize-one": "6.0.0",
"next": "14.0.3",
"nodemailer": "6.9.1",
"object-hash": "^3.0.0",
"react": "18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-redux": "8.0.4",
"sharp": "^0.32.6",
"uuid": "9.0.0"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "7.19.3",
"@testing-library/dom": "8.19.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/autosuggest-highlight": "3.2.0",
"@types/jest": "29.2.1",
"@types/lodash": "4.14.186",
"@types/lodash.compact": "^3.0.7",
"@types/node": "18.11.3",
"@types/nodemailer": "6.4.7",
"@types/object-hash": "^3.0.6",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"crypto": "1.0.1",
"eslint": "8.26.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-no-relative-import-paths": "1.4.0",
"eslint-plugin-prettier": "4.2.1",
"fs": "0.0.1-security",
"jest": "29.2.2",
"path": "0.12.7",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.1",
"typescript": "4.8.4"
}
}