-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.95 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
{
"name": "tc_internal",
"version": "1.0.0",
"description": "Helping Walkers Walk",
"main": "index.js",
"scripts": {
"prestart": "webpack -p",
"start": "nodemon index.js",
"dev": "nodemon index.js & webpack -w",
"test": "jest"
},
"author": "Neville Challinger",
"license": "ISC",
"dependencies": {
"axios": "^0.17.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cloudinary": "^1.9.1",
"css-loader": "^0.28.7",
"csv-parse": "^2.0.0",
"date-fns": "^1.29.0",
"esendex": "^0.1.8",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"fs-extra": "^7.0.0",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"jsonwebtoken": "^8.1.0",
"moment": "^2.19.3",
"multer": "^1.3.0",
"node-sass": "^4.5.3",
"nodemailer": "^4.3.1",
"nodemon": "^1.12.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^7.3.0",
"react": "^16.0.0",
"react-big-calendar": "^0.17.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.76.0",
"sequelize": "^4.20.3",
"sharp": "^0.20.1",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1"
},
"babel": {
"presets": [
"react",
[
"env",
{
"targets": {
"uglify": true
}
}
]
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties"
]
}
}