-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
92 lines (92 loc) · 2.88 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
{
"name": "survivejs-site",
"private": true,
"version": "2.0.0",
"description": "SurviveJS site",
"author": "Juho Vepsalainen <[email protected]>",
"scripts": {
"start": "node ./antwar.bootstrap.js develop",
"build": "rimraf build && npm run fetch:books && node ./antwar.bootstrap.js build && npm run sitemap",
"deploy": "gh-pages -d build && npm run purge_cf",
"fetch:books": "scripts/fetch-books.sh",
"bootstrap": "scripts/bootstrap.sh",
"sitemap": "cd build && sitemap-static --prefix=https://survivejs.com/ > sitemap.xml",
"lint": "eslint . --ext js --ext jsx --ignore-path .gitignore --cache",
"format": "prettier --write 'styles/**/*.scss'",
"purge_cf": "node ./utils/purge_cf.js",
"test": "npm run lint && npm run format",
"check:links": "hyperlink build/index.html -r",
"prepush": "npm test"
},
"dependencies": {
"@survivejs/components": "^0.2.0",
"emotion": "^8.0.12",
"front-matter": "^2.3.0",
"illuminate-js": "^1.0.0-alpha.1",
"loader-utils": "^1.1.0",
"lodash": "^4.17.19",
"marked": "^0.3.9",
"moment": "^2.20.1",
"react": "^16.2.0",
"react-emotion": "^8.0.12",
"react-router-dom": "^4.2.2",
"remove-markdown": "^0.2.2",
"tamia-theme": "^0.1.0"
},
"devDependencies": {
"antwar": "^0.21.1",
"antwar-rss-plugin": "^0.21.0",
"autoprefixer": "^7.2.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-plugin-emotion": "^8.0.12",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"cloudflare4": "^0.2.5",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.7",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"hyperlink": "^3.0.1",
"json-loader": "^0.5.7",
"node-sass": "^4.12.0",
"postcss-loader": "^2.0.9",
"prettier": "^2.0.5",
"raw-loader": "^0.5.1",
"react-router": "^4.2.0",
"rimraf": "^2.6.3",
"sass-loader": "^6.0.6",
"serve-static": "^1.13.1",
"sitemap-static": "^0.4.2",
"style-loader": "^0.19.1",
"title-case": "^2.1.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/survivejs/site.git"
},
"homepage": "https://www.survivejs.com",
"bugs": {
"url": "https://github.com/survivejs/site/issues"
},
"keywords": [
"site",
"antwar"
],
"licenses": "MIT"
}