forked from yarnpkg/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "yarn-website",
"version": "1.0.0",
"devDependencies": {
"algolia-sitemap": "^1.1.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"happypack": "^3.0.3",
"lint-staged": "^3.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.3.1",
"webpack": "^2.5.1",
"webpack-manifest-plugin": "^1.1.0"
},
"scripts": {
"build": "webpack",
"build:sitemaps": "./scripts/sitemaps.js",
"build:production": "npm run build && npm run build:sitemaps",
"start": "webpack --watch",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --trailing-comma=es5",
"git add"
]
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/yarnpkg/website.git"
},
"private": true,
"dependencies": {
"algoliasearch": "^3.22.1",
"bootstrap": "4.0.0-alpha.5",
"bytes": "^2.5.0",
"date-fns": "^1.28.4",
"docsearch.js": "^2.3.3",
"jquery": "^3.2.1",
"marked": "^0.3.6",
"prop-types": "^15.5.10",
"qs": "^6.4.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-instantsearch": "^4.0.0-beta.6",
"react-sparklines": "^1.6.0",
"react-transition-group": "^1.1.3",
"unescape": "^0.2.0",
"unfetch": "^2.1.2",
"xss": "^0.3.3"
}
}