-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
110 lines (110 loc) · 3.37 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-finland-site",
"version": "0.0.0",
"description": "React Finland site",
"main": "index.js",
"private": true,
"scripts": {
"start": "node ./antwar.bootstrap.js develop",
"build": "rimraf ./build && node ./antwar.bootstrap.js build && npm run sitemap && npm run copy:all",
"build:netlify": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint . --ignore-path .gitignore --fix",
"test": "npm run lint",
"sitemap": "cd build && sitemap-static --prefix=https://react-finland.fi/ > sitemap.xml",
"copy:all": "npm run copy:extra",
"copy:extra": "cp -rfv assets/extra/* build",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"precommit": "lint-staged",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "[email protected]:ReactFinland/site.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReactFinland/site/issues"
},
"homepage": "https://github.com/ReactFinland/site#readme",
"dependencies": {
"@react-finland/content-2018": "^12.29.0",
"antwar": "^0.26.0",
"antwar-interactive": "^0.21.0",
"apollo-client": "^2.2.8",
"classnames": "^2.2.5",
"front-matter": "^3.0.2",
"graphql": "^0.13.2",
"graphql-request": "^3.4.0",
"graphql-tools": "^3.0.0",
"is-object": "^1.0.1",
"loader-utils": "^1.2.3",
"marked": "^0.7.0",
"moment": "^2.24.0",
"normalize.css": "^8.0.0",
"prettier": "^1.19.1",
"prop-types": "^15.6.0",
"react": "^16.3.2",
"react-apollo": "^2.1.3",
"react-country-flag": "^0.1.12",
"react-dom": "^16.3.2",
"react-helmet-async": "0.0.5",
"react-image-lightbox": "^4.5.0",
"react-markdown": "^3.2.1",
"react-photo-gallery": "^6.0.22",
"react-router-dom": "^4.2.2",
"remove-markdown": "^0.3.0",
"timediff": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/register": "^7.0.0-beta.40",
"autoprefixer": "^8.0.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.0-beta.0",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.10",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.9",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"node-sass": "^4.7.2",
"patch-package": "^6.4.7",
"postcss-loader": "^2.1.0",
"preact": "^8.2.7",
"preact-compat": "^3.18.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^4.0.0",
"react-router": "^4.2.0",
"react-styleguidist": "^6.2.5",
"redirect-webpack-plugin": "^0.1.1",
"request": "^2.83.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sitemap-static": "^0.4.2",
"style-loader": "^0.20.2",
"url-loader": "^0.6.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.2"
},
"lint-staged": {
"*.{js,jsx,css,scss,json}": [
"prettier --write",
"git add"
]
}
}