-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
{
"name": "plate",
"version": "0.0.1",
"description": "Whats on your plate?",
"author": "Tyler Knipfer <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/knipferrc/plate-app.git"
},
"bugs": {
"url": "https://github.com/knipferrc/plate-app/issues"
},
"keywords": [
"preact",
"plate",
"social"
],
"scripts": {
"dev": "snowpack dev -p $PORT",
"build": "snowpack build && npm run workbox",
"test": "web-test-runner \"src/**/*.test.tsx\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"workbox": "workbox generateSW workbox-config.js"
},
"dependencies": {
"classnames": "^2.2.6",
"formik": "^2.2.6",
"magic-sdk": "^4.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-router-dom": "^5.2.0",
"rosetta": "^1.1.0",
"swr": "^0.4.1",
"yup": "^0.32.8"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-postcss": "^1.1.0",
"@snowpack/plugin-react-refresh": "^2.4.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/plugin-webpack": "^2.3.0",
"@types/classnames": "^2.2.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/snowpack-env": "^2.3.3",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@vercel/node": "^1.9.0",
"autoprefixer": "^10.2.4",
"cssnano": "^4.1.10",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"postcss-modules": "^4.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"snowpack": "^3.0.11",
"typescript": "^4.1.3",
"workbox-cli": "^6.1.0"
}
}