-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·80 lines (80 loc) · 2.53 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
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": "inunotaisho-angularjs",
"version": "0.2.0",
"description": "This is the packagejson for Ethan Fairweather's professional website version 2. This is also MEAN stack in nature. Will probably be written in Angular 2 or JS will be the fallback if need be.",
"main": "lib/app.js",
"engines": {
"node": "9.4.0",
"npm": "5.6.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"concurrently": "^3.5.0",
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"mkdirp": "^0.5.1",
"nodemon": "latest",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"webpack": "^3.1.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.2"
},
"dependencies": {
"angular": "^1.6.5",
"angular-froala": "^2.7.4",
"angular-resource": "^1.6.5",
"angular-route": "^1.6.5",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.1",
"bootstrap": "^3.3.7",
"cloudinary": "^1.10.0",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.2",
"express-session": "^1.15.2",
"font-awesome": "^4.7.0",
"helmet": "^3.6.1",
"jquery": "^3.2.1",
"mongoose": "^5.0.8",
"nodemailer": "^4.0.1",
"nodemailer-mailgun-transport": "^1.3.5",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"sequelize": "^4.33.4",
"sequelize-cli": "^3.2.0",
"serve-favicon": "^2.4.3"
},
"scripts": {
"assets": "cp -R node_modules/font-awesome/fonts ./public/fonts && cp -R src/images ./public/images",
"bundle": "npm run less && npm run pack",
"clean": "rimraf public/* && npm run assets",
"less": "mkdirp public/dist && lessc ./src/styles/main.less > ./public/dist/app.css --clean-css=\"--s0 --advanced\"",
"dev": "NODE_ENV=development nodemon ./lib/app.js",
"migrate": "sequelize db:migrate",
"start": "concurrently -r \"npm run clean\" \"npm run bundle\" \"nodemon ./lib/app.js\"",
"pack": "webpack --config webpack.config.dev.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inunotaisho26/inunotaisho-angularjs.git"
},
"keywords": [
"example",
"fullstack",
"postgres",
"inunotaisho26",
"犬の大将",
"晴天イタン"
],
"author": "Ethan Burrow Fairweather",
"license": "ISC",
"bugs": {
"url": "https://github.com/inunotaisho26/inunotaisho-angularjs/issues"
},
"homepage": "https://github.com/inunotaisho26/inunotaisho-angularjs#readme"
}