-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "mat-che",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "7.10.x"
},
"scripts": {
"build": "webpack -d",
"format": "prettier --write {.,mat-che}/*.{js,jsx}",
"test": "prettier --list-different {.,mat-che}/*.js",
"prestart": "npm-run-all format build",
"start": "npm-run-all --parallel watch:server watch:build",
"watch:build": "webpack --watch",
"watch:server": "DEBUG=* nodemon ./server.js --exec babel-node -e js",
"heroku-postbuild": "webpack -p --config ./webpack.config.js --progress"
},
"author": "Lana",
"license": "MIT",
"dependencies": {
"babel-cli": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-ramda": "1.4.3",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"body-parser": "1.18.2",
"debug": "3.1.0",
"ejs": "2.5.7",
"express": "4.16.2",
"express-session": "1.15.6",
"graphql": "0.10.5",
"graphql-server-express": "1.2.0",
"graphql-subscriptions": "0.5.4",
"graphql-tools": "2.6.1",
"memorystore": "1.6.0",
"rambda": "1.0.0",
"react": "16.0.0",
"react-apollo": "1.4.15",
"react-dom": "16.0.0",
"semantic-ui-react": "0.75.1",
"subscriptions-transport-ws": "0.8.3",
"uuid": "3.1.0",
"webpack": "3.8.1"
},
"devDependencies": {
"enzyme": "3.1.0",
"nodemon": "1.12.1",
"npm-run-all": "4.1.1",
"prettier": "1.7.4"
}
}