-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
95 lines (95 loc) · 2.68 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
{
"name": "masochist",
"version": "0.0.1",
"description": "Masochist server",
"main": "dist/server/main.js",
"repository": {
"type": "git",
"url": "https://github.com/wincent/masochist.git"
},
"config": {
"content-repo": "."
},
"scripts": {
"build": "node build.js",
"coverage": "true",
"lint": "eslint src",
"pretty": "true",
"pretty-check": "true",
"relay": "babel-node scripts/compile.js",
"start": "MASOCHIST_CONTENT_REPO=$npm_package_config_content_repo babel-node --trace-deprecation --trace-warnings src/server/main.js",
"start-prod": "MASOCHIST_CONTENT_REPO=$npm_package_config_content_repo NODE_ENV=production node dist/server/main.js",
"test": "true",
"update-indices": "MASOCHIST_CONTENT_REPO=$npm_package_config_content_repo babel-node src/bin/updateIndices.js",
"update-schema": "babel-node src/bin/updateSchema.js"
},
"author": {
"name": "Greg Hurrell",
"email": "greg@hurrell.net",
"url": "https://github.com/wincent"
},
"license": "MIT",
"private": true,
"dependencies": {
"@babel/cli": "*",
"@babel/core": "*",
"@babel/node": "*",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-nullish-coalescing-operator": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/plugin-proposal-optional-chaining": "*",
"@babel/polyfill": "*",
"@babel/preset-env": "*",
"@babel/preset-flow": "*",
"@babel/preset-react": "*",
"@babel/register": "*",
"@wincent/escape-html": "*",
"@wincent/nullthrows": "*",
"@wincent/stable-stringify": "*",
"assets-webpack-plugin": "*",
"autoprefixer": "*",
"babel-eslint": "*",
"babel-loader": "*",
"babel-plugin-minify-replace": "*",
"babel-plugin-relay": "*",
"body-parser": "*",
"classnames": "*",
"css-loader": "*",
"cssnano": "*",
"dataloader": "*",
"dd-trace": "4",
"entities": "*",
"express": "*",
"fs-extra": "*",
"glob": "*",
"graphql": "*",
"graphql-relay": "0.7.0",
"highlight.js": "*",
"history": "*",
"isomorphic-fetch": "*",
"markdown-it": "*",
"markdown-it-footnote": "*",
"memcached": "*",
"mini-css-extract-plugin": "*",
"path-to-regexp": "*",
"postcss": "*",
"postcss-loader": "*",
"prop-types": "*",
"react": "*",
"react-dom": "*",
"react-relay": "*",
"relay-compiler": "*",
"relay-runtime": "*",
"rss": "*",
"scroll-behavior": "*",
"style-loader": "*",
"terser-webpack-plugin": "*",
"universal-router": "*",
"unpack-content": "*",
"webpack": "*"
},
"devDependencies": {
"http-proxy": "*",
"webpack-dev-server": "*"
}
}