forked from scrumptydumpty/scrumpty
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 KB
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
{
"name": "scrumpty",
"version": "1.0.0",
"description": "putting apps together again",
"main": "./server/server.js",
"scripts": {
"test": "mocha",
"react-dev": "webpack --config ./webpack.config.js -d --watch",
"server": "nodemon ./server/server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run react-dev\"",
"start": "webpack && node ./server/server.js",
"resetdb": "./database/selectionScript.sh student student",
"graphql-sandbox": "nodemon ./graphQL/graphqlServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrumptydumpty/scrumpty.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/scrumptydumpty/scrumpty/issues"
},
"homepage": "https://github.com/scrumptydumpty/scrumpty#readme",
"dependencies": {
"@material-ui/core": "^1.4.0",
"@material-ui/icons": "^1.1.0",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-session": "^1.15.6",
"graphiql": "^0.11.11",
"graphql": "^0.13.2",
"knex": "^0.15.1",
"mysql2": "^1.5.3",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react": "^16.4.1",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.4.2",
"react-router-dom": "^4.3.1",
"socket.io": "^2.1.1"
},
"babel": {
"presets": [
"env",
"react"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.6.0",
"dotenv": "^6.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
}
}