forked from Nookbot/villagerdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.68 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
{
"name": "villagerdb",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build-js": "webpack --mode production",
"build-css": "lessc public/stylesheets/style.less public/stylesheets/style.css -x",
"watch-less": "grunt",
"watch-js": "webpack --mode development --watch"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@fortawesome/fontawesome-free": "^5.11.2",
"babel-loader": "^8.0.6",
"bluebird": "^3.7.1",
"bootstrap": "^4.3.1",
"connect-redis": "^4.0.3",
"cookie-parser": "~1.4.4",
"cookie-session": "^1.3.3",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"elasticsearch": "^16.5.0",
"express": "~4.16.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.0",
"express-validator": "^6.3.0",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"jquery": "^3.4.1",
"less": "^3.11.1",
"moment": "^2.24.0",
"mongodb": "^3.4.0",
"morgan": "~1.9.1",
"node-cron": "^2.0.3",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"popper.js": "^1.16.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"redis": "^2.8.0",
"slick-carousel": "^1.8.1",
"underscore": "^1.9.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"nodemon": "^2.0.2"
},
"nodemonConfig": {
"ignore": [
"/usr/src/app/data/*",
"/usr/src/app/public/*",
"/usr/src/app/src/*"
]
}
}