-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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
{
"name": "speakeasyjs.com",
"description": "The JavaScript meetup for 🥼 mad science, 🧙♂️ hacking, and 🧪 experiments",
"version": "1.0.0",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bugs": {
"url": "https://github.com/feross/speakeasyjs.com/issues"
},
"dependencies": {
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@next/bundle-analyzer": "^11.1.2",
"@next/env": "^11.1.2",
"date-fns": "^2.23.0",
"debug": "^4.3.2",
"feross": "^2.0.1",
"framer-motion": "^4.1.17",
"load-script2": "^2.0.6",
"next": "^11.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"nodemon": "^2.0.12",
"standard": "*"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"homepage": "https://github.com/feross/speakeasyjs.com",
"keywords": [
"speakeasy js"
],
"license": "MIT",
"main": "./server/index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/speakeasyjs.com.git"
},
"scripts": {
"build": "next build",
"deploy": "npm run test && git push",
"start": "NODE_ENV=production node .",
"test": "standard",
"watch": "DEBUG=speakeasyjs.com:* nodemon . --watch server"
},
"standard": {
"parser": "babel-eslint"
}
}