-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·77 lines (77 loc) · 2.3 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
{
"version": "1.0.0",
"name": "stoplight.io",
"description": "The stoplight.io website.",
"author": "Stoplight, Inc <[email protected]>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/stoplight.io.git"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"start": "react-static start",
"build.production": "NODE_ENV=production RELEASE_STAGE=production react-static build",
"build": "NODE_ENV=production react-static build",
"serve": "serve dist -p 3000",
"format": "prettier --single-quote --trailing-comma es5 --print-width 100 --write \"src/**/*.js\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.24",
"@fortawesome/free-brands-svg-icons": "5.5.x",
"@fortawesome/free-regular-svg-icons": "5.5.x",
"@fortawesome/free-solid-svg-icons": "5.5.x",
"@fortawesome/react-fontawesome": "0.1.x",
"clsx": "^1.0.4",
"disqus-react": "^1.0.7",
"lodash.get": "^4.4.2",
"netlify-cms": "2.3.x",
"netlify-cms-widget-fontawesome": "3.1.0",
"netlify-identity-widget": "1.4.14",
"prismjs": "1.16.x",
"react": "16.5.x",
"react-headroom": "^2.2.8",
"react-localize-redux": "^3.5.3",
"react-particles-js": "2.4.0-beta.10",
"react-static": "5.9.12",
"tailwindcss": "0.7.x",
"typeface-raleway": "^0.0.54"
},
"devDependencies": {
"@stoplight/scripts": "^4.0.0",
"@types/classnames": "^2.2.9",
"@types/node": "^10.14.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"autoprefixer": "9.3.x",
"chokidar": "2.0.x",
"css-loader": "1.0.x",
"extract-text-webpack-plugin": "3.0.x",
"front-matter": "3.0.x",
"js-yaml": "^3.13.1",
"klaw": "3.0.x",
"markdown-it": "8.4.x",
"markdown-it-anchor": "5.0.x",
"markdown-it-toc-done-right": "2.0.x",
"markdown-it-video": "0.6.x",
"node-sass": "4.12.x",
"postcss": "^7.0.18",
"postcss-flexbugs-fixes": "4.1.x",
"postcss-loader": "3.0.x",
"prettier": "1.15.x",
"react-hot-loader": "^4.12.13",
"sass-loader": "7.1.x",
"serve": "10.1.x",
"sharp": "0.22.1",
"style-loader": "0.23.x",
"ts-loader": "5.3.x",
"typescript": "3.1.x"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"singleQuote": true
}
}