-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "graphql-blog",
"private": true,
"description": "This README would normally document whatever steps are necessary to get the application up and running.",
"version": "1.0.0",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"webpack-dev-server": "webpack-dev-server --config config/webpack.config.js",
"build:development": "NODE_ENV=development webpack --progress --config config/webpack.config.js",
"build:production": "NODE_ENV=production webpack --progress --config config/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfx/graphql-blog.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gfx/graphql-blog/issues"
},
"homepage": "https://github.com/gfx/graphql-blog#readme",
"engines": {
"node": ">= 8"
},
"dependencies": {
"@typed-decorators/autobind": "^0.3.0",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"core-js": "^3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@bitjourney/check-es-version-webpack-plugin": "^1.0.2",
"@gfx/zopfli": "^1.0.11",
"@types/node": "^10.14.4",
"compression-webpack-plugin": "^2.0.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-manifest-plugin": "^2.0.4"
}
}