This repository has been archived by the owner on Sep 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
107 lines (107 loc) · 3.43 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": "smaghetti",
"version": "0.1.0",
"private": true,
"scripts": {
"develop": "next dev",
"prebuild": "yarn type-check && yarn ci-test",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"type-check": "tsc --noemit",
"test": "yarn jest",
"ci-test": "yarn jest --testPathIgnorePatterns .*injectLevelIntoSave.*",
"lint": "yarn type-check && yarn eslint --max-warnings 1 src",
"migrations-up": "node-pg-migrate up -m database/migrations",
"migrations-down": "node-pg-migrate down -m database/migrations",
"run-ts-node": "yarn ts-node --project ./tsconfig.tsnode.json",
"dump-graphic-set-bytes": "brute/getSpriteGraphicSetBytes_parallel.sh",
"dump-object-set-bytes": "brute/getObjectSetBytes_parallel.sh",
"run-prettier": "yarn prettier --config .prettierrc --write src/**/*.ts*",
"generate-resource-sha-map": "TS_NODE_FILES=true yarn run-ts-node scripts/generateResourceShas.ts ../sma4/sma4.gba ./src/tiles/resourceShaMap.ts",
"parse-progress": "TS_NODE_FILES=true yarn run-ts-node scripts/parseProgress"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@reduxjs/toolkit": "^1.5.0",
"@supabase/supabase-js": "^1.29.1",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@types/howler": "^2.2.1",
"@types/javascript-time-ago": "^2.0.3",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.34",
"@types/node-fetch": "^2.6.4",
"@types/pg": "^8.6.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-modal": "^3.16.0",
"@types/react-redux": "^7.1.25",
"@types/react-virtualized": "^9.21.22",
"autoprefixer": "^9",
"clsx": "^1.1.1",
"concurrently": "^6.0.0",
"file-loader": "^6.2.0",
"global": "^4.4.0",
"howler": "^2.2.1",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"javascript-time-ago": "^2.5.9",
"jest": "^27.0.6",
"js-sha1": "^0.6.0",
"localforage": "^1.9.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"ndb": "^1.1.5",
"next": "^13.4.1",
"next-compose-plugins": "^2.2.1",
"next-optimized-classnames": "^1.0.1",
"next-optimized-images": "^2.6.2",
"node-fetch": "^3.3.1",
"node-pg-migrate": "^5.9.0",
"pg": "^8.6.0",
"postcss": "^7",
"prettier": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^3.2.1",
"react-icons": "^4.3.1",
"react-modal": "^3.12.1",
"react-redux": "^7.2.2",
"react-use-clipboard": "^1.0.7",
"react-virtualized": "^9.22.3",
"redux-thunk": "^2.3.0",
"redux-undo": "^1.0.1",
"sharp": "^0.32.4",
"storybook-css-modules-preset": "^1.0.6",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-jest": "^27.0.4",
"ts-mockery": "^1.2.0",
"ts-node": "^9.1.1",
"typescript": "^5.1.6",
"url-loader": "^4.1.1",
"@babel/core": "^7.13.10",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-loader": "^8.2.2",
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1"
},
"devDependencies": {
"canvas": "^2.7.0"
},
"resolutions": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
}
}