forked from TN1ck/anagrams.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "anagrams.io",
"version": "0.0.1",
"description": "A nice anagram solver",
"main": "index.js",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"format": "prettier --write '.'"
},
"keywords": [
"anagrams",
"anagram generator",
"anagram solver"
],
"author": "Tom Nick, Taisia Tikhnovetskaya",
"license": "MIT",
"devDependencies": {
"@types/d3-interpolate": "3.0.1",
"@types/lodash": "4.14.194",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@types/react-modal": "3.16.0",
"@vitejs/plugin-react": "4.0.0",
"babel-polyfill": "6.26.0",
"typescript": "5.0.4",
"vitest": "^0.31.0"
},
"dependencies": {
"@tanstack/react-location": "^3.7.4",
"@types/styled-components": "^5.1.26",
"d3-interpolate": "^3.0.1",
"lodash": "4.17.21",
"mobx": "6.9.0",
"mobx-react": "7.6.0",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-modal": "3.16.1",
"styled-components": "5.3.10",
"styled-theming": "2.2.0",
"vite": "4.3.5",
"vite-plugin-babel": "1.1.3"
}
}