forked from Justice-League-Five/KidDash
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.19 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.19 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "kiddash",
"sideEffects": false,
"version": "1.0.0",
"description": "Greenfield Project ## Team - __Product Owner__: Jessica - __Scrum Master__: Aiman - __Development Team Members__: Anthony, Ryan, Justin ## Table of Contents 1. [Usage](#Usage) 1. [Requirements](#requirements) 1. [Development](#development) 1. [Installing Dependencies](#installing-dependencies) 1. [Tasks](#tasks) 1. [Team](#team) 1. [Contributing](#contributing) ## Usage > Some usage instructions ## Requirements - Node 0.10.x - Redis 2.6.x - Postgresql 9.1.x - etc - etc ## Development ### Installing Dependencies From within the root directory: ```sh sudo npm install -g bower npm install bower install ``` ### Roadmap View the project roadmap [here](LINK_TO_PROJECT_ISSUES) ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.",
"main": "index.js",
"scripts": {
"db:seed": "node database/seedDatabase.js",
"format": "prettier --write \"client/**/*.{js,jsx,css,json}\"",
"format:check": "prettier --list-different \"client/**/*.{js,jsx,css,json}\"",
"lint": "./node_modules/eslint/bin/eslint.js \"**/*.{js,jsx}\"",
"lint:fix": "./node_modules/eslint/bin/eslint.js --fix \"**/*.{js,jsx}\"",
"server": "nodemon ./server/server.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:update": "jest -u",
"build": "webpack --mode production",
"start": "node ./server/server.js",
"postinstall": "webpack --mode production"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/justwinn/KidDash.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/justwinn/KidDash/issues"
},
"homepage": "https://github.com/justwinn/KidDash#readme",
"dependencies": {
"@material-ui/core": "^3.0.3",
"@material-ui/icons": "^3.0.1",
"@reach/router": "^1.1.1",
"axios": "^0.18.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.3",
"express-partials": "^0.3.0",
"express-session": "^1.15.6",
"moment": "^2.22.2",
"mongoose": "^5.2.13",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"path": "^0.12.7",
"react": "^16.5.0",
"react-dom": "^16.5.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.3",
"prop-types": "^15.6.2",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}