-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "noteworx-react-mongodb",
"version": "1.0.0",
"description": "A basic note application that uses React frontend to capture and manage notes, an api written in ExpressJS, and mongodb to store notes",
"scripts": {
"build": "webpack -d",
"build:watch": "webpack --watch",
"lint": "eslint .; exit 0",
"lint:fix": "eslint . --fix",
"serve": "webpack -d && live-server ./Client/public",
"serve:dev": "webpack-dev-server --open",
"serve:api": "node ./Server/server.js",
"test": "echo \"No tests available\" && exit 1"
},
"license": "MIT",
"babel": {
"presets": [
"env",
"react"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.5.1",
"html-webpack-plugin": "^2.30.1",
"live-server": "^1.2.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"moment": "^2.19.3",
"mongodb": "^2.2.33",
"morgan": "^1.9.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-modal": "^3.1.7",
"uuid": "^3.1.0"
}
}