forked from ReactFinland/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.63 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
{
"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 . --ext js --ext jsx --ignore-path .gitignore --cache",
"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",
"precommit": "lint-staged"
},
"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": "^11.3.2",
"antwar": "^0.21.1",
"antwar-interactive": "^0.21.0",
"classnames": "^2.2.5",
"moment": "^2.20.1",
"normalize.css": "^7.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-country-flag": "^0.1.12",
"react-dom": "^16.2.0",
"react-images": "0.5.14",
"react-markdown": "^3.1.5",
"react-photo-gallery": "^6.0.22",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.26.0",
"css-loader": "^0.28.9",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.0",
"preact": "^8.2.7",
"preact-compat": "^3.18.0",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"react-router": "^4.2.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sitemap-static": "^0.4.2",
"style-loader": "^0.20.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
},
"lint-staged": {
"*.{js,jsx,css,scss,json}": ["prettier --write", "git add"]
}
}