forked from yarnpkg/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "yarn-website",
"version": "1.0.0",
"devDependencies": {
"algolia-sitemap": "^1.0.1",
"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.2.2",
"webpack": "^2.4.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",
"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",
"date-fns": "^1.28.4",
"docsearch.js": "^2.3.3",
"jquery": "^3.2.1",
"marked": "^0.3.6",
"qs": "^6.4.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-instantsearch": "^3.2.2-beta0",
"react-sparklines": "^1.6.0",
"react-transition-group": "^1.1.2",
"unfetch": "^2.1.2",
"xss": "^0.3.3"
}
}