-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
81 lines (81 loc) · 2.7 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
{
"name": "windrift",
"version": "2.2.3",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next build && next export",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"lint": "eslint --fix core/*",
"new": "ts-node scripts/create-story $npm_config_first",
"start": "next build && next start",
"test": "npx playwright test",
"vercel": "vercel"
},
"engines": {
"node": "=18"
},
"dependencies": {
"@mdx-js/loader": "^2.1.2",
"@next/mdx": "^12.2.0",
"@react-spring/web": "^9.6.1",
"@reduxjs/toolkit": "^1.8.3",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mdx": "^2.0.2",
"@types/react-motion": "0.0.32",
"@types/uuid": "^8.3.0",
"@use-it/interval": "^1.0.0",
"eslint-config-next": "^13.1.3",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"moment": "^2.29.4",
"next": "^13.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.0",
"react-redux": "^8.0.2",
"react-syntax-highlighter": "^15.4.5",
"react-transition-group": "^4.4.2",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"redux-undo": "^1.0.1",
"uuid": "^8.3.1",
"voca": "^1.4.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.2",
"@playwright/test": "^1.33.0",
"@types/js-yaml": "^3.12.5",
"@types/minimatch": "^3.0.3",
"@types/node": "^14.17.32",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-redux": "^7.1.24",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/react-transition-group": "^4.4.3",
"@types/redux": "^3.6.0",
"@types/voca": "^1.4.0",
"@types/yargs": "^15.0.13",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"es6-template-strings": "^2.0.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.3.0",
"js-yaml": "^3.14.0",
"prettier": "^2.2.1",
"sass": "^1.29.0",
"ts-node": "^8.9.1",
"typescript": "^4.0.5",
"undefined": "^0.1.0",
"vercel": "^28.13.0",
"yargs": "^17.0.0-candidate.0"
}
}