-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.57 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "webnote-b2l",
"version": "0.1.0",
"description": "app created in build-to-learn chingu walrus cohort @freecodecamp",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/leovcunha/webnote-b2l.git"
},
"keywords": [
"note",
"list",
"app"
],
"author": "@smhrjn && @leovcunha",
"license": "ISC",
"bugs": {
"url": "https://github.com/leovcunha/webnote-b2l/issues"
},
"homepage": "https://github.com/leovcunha/webnote-b2l#readme",
"scripts": {
"test": "node test.js",
"start": "cross-env NODE_ENV=development node app.js",
"prebuild": "rimraf ./dist && mkdir dist",
"build": "cross-env NODE_ENV=production node buildScripts/build.js",
"serve": "cross-env NODE_ENV=production node app.js",
"preheroku": "npm run build",
"heroku": "git add . && git commit -m npmDeploy && git push --force heroku mhrjn:master && git push origin mhrjn"
},
"dependencies": {
"alertify.js": "^1.0.12",
"axios": "^0.16.2",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"bootstrap": "^4.0.0-alpha.6",
"express": "^4.15.3",
"jsonwebtoken": "^7.4.1",
"moment": "^2.18.1",
"mongoose": "^4.10.6",
"node-readability": "^2.2.0",
"normalize.css": "^7.0.0",
"rimraf": "^2.6.1",
"sanitizer": "^0.1.3",
"vee-validate": "^2.0.0-rc.6",
"vue": "^2.3.4",
"vue-router": "^2.6.0",
"vue-spinner": "^1.0.2",
"vuex": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"cssnext": "^1.8.4",
"eslint": "^4.0.0",
"eslint-config-google": "^0.8.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.3.0",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.28.0",
"morgan": "^1.8.2",
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"vue-loader": "^12.2.1",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-dev-server": "^2.5.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-md5-hash": "0.0.5"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}