forked from syntaxfm/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.83 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.83 KB
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
{
"name": "Syntax",
"description": "Full Stack Developers Wes Bos and Scott Tolinski dive deep into web development topics, explaining how they work and talking about their own experiences. They cover from JavaScript frameworks like React, to the latest advancements in CSS to simplifying web tooling.",
"engines": {
"node": ">=8.1.2"
},
"scripts": {
"dev": "next dev --port 6969",
"build": "next build",
"start": "next start",
"deploy": "now",
"alias": "now alias",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"now": {
"alias": [
"syntax",
"syntax.fm"
]
},
"dependencies": {
"autoprefixer": "10.0.1",
"axios": "^0.21.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "4.0.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"express": "^4.17.1",
"glob": "7.1.6",
"meta-marked": "^0.4.2",
"next": "^10.0.0",
"next-url-prettifier": "^1.4.0",
"now": "^20.1.2",
"os": "^0.1.1",
"parse-srt": "^1.0.0-alpha",
"postcss-easy-import": "3.0.0",
"postcss-loader": "4.0.4",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hls-player": "^1.1.0",
"react-icons": "^3.11.0",
"speakingurl": "^14.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-wesbos": "1.0.1",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.1.2",
"stylus": "^0.54.8",
"stylus-loader": "^4.2.0"
}
}