-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.07 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
111
112
113
114
115
116
117
118
{
"name": "NoomaPress",
"version": "0.1.0",
"description": "A front-end framework",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node build/server/bundle.js",
"preview": "NODE_ENV=production PORT=4000 node build/server/bundle.js",
"build": "rm -rf build && npm run gulp && NODE_ENV=production webpack --progress --config webpack.config.server.js && NODE_ENV=production webpack --progress --config webpack.config.client.js",
"postinstall": "npm run build",
"dev": "NODE_ENV=development concurrently -c blue,cyan,magenta \"webpack --watch --config webpack.config.server.js\" \"sleep 3 && nodemon --watch build/server build/server/bundle.js\" \"webpack-dev-server -d --hot --inline --no-info --port 3020 --config webpack.config.client.js\"",
"lint": "eslint ui",
"lint:fix": "eslint --fix ui",
"test": "npm run lint",
"persistgraphql": "persistgraphql ui --add_typename",
"precommit": "lint-staged",
"gulp": "./node_modules/gulp/bin/gulp.js",
"postcss": "postcss --config postcss.config.js --replace build/client/css/app.css",
"css:dev": "node-sass --output-style expanded --precision 6 src/styles/app.scss build/client/css/app.css && npm run postcss",
"css:prod": "npm run gulp && npm run postcss"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/willopez/NoomaPress"
},
"author": "Will Lopez",
"license": "MIT",
"bugs": {
"url": "https://github.com/willopez/NoomaPress/issues"
},
"homepage": "https://github.com/willopez/NoomaPress",
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^4.0.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"concurrently": "^3.0.0",
"copy-webpack-plugin": "^4.2.1",
"css-loader": "^0.26.4",
"eslint": "^3.8.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"graphql-tag": "^1.3.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.0",
"gulp-sass": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"node-sass": "^4.5.3",
"nodemon": "^1.9.2",
"postcss-cli": "^4.1.1",
"postcss-easy-import": "^3.0.0",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.9",
"prettier": "^1.7.4",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^1.16.5"
},
"dependencies": {
"apollo-cache-inmemory": "^1.0.0",
"apollo-client": "^2.0.0",
"apollo-link": "^1.0.0",
"apollo-link-error": "^1.0.0",
"apollo-link-http": "^1.0.0",
"apollo-link-ws": "^1.0.0",
"apollo-server-express": "^1.2.0",
"apollo-utilities": "^1.0.0",
"bootstrap": "^4.0.0",
"classnames": "^2.2.5",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"graphql": "^0.11.7",
"graphql-anywhere": "^4.0.0",
"graphql-tools": "^2.6.1",
"http-proxy-middleware": "^0.17.1",
"immutability-helper": "^2.1.0",
"nconf": "^0.8.5",
"node-emoji": "^1.3.0",
"node-fetch": "^1.7.3",
"persistgraphql": "^0.3.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-apollo": "^2.0.0",
"react-burger-menu": "^2.2.0",
"react-dom": "^16.2.0",
"react-ga": "^2.1.0",
"react-helmet": "^5.2.0",
"react-native-web": "^0.1.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-timeago": "^3.0.0",
"react-transition-group": "^1.1.2",
"reactstrap": "^5.0.0-beta",
"regenerator-runtime": "^0.11.0",
"subscriptions-transport-ws": "^0.7.0",
"wpapi": "^1.1.2"
}
}