-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.68 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
{
"name": "status.io",
"version": "0.0.1",
"scripts": {
"test": "NODE_ENV=test nyc mocha --recursive './src/**/*.test.js'",
"lint": "eslint --env mocha --ext .js src/",
"front:serve": "NODE_ENV=development vue-cli-service serve resources/main.js",
"front:build": "rm -rf public/* && cp -r resources/assets/img public/img && cp resources/manifest.json public/ && NODE_ENV=production vue-cli-service build --no-clean resources/main.js",
"front:lint": "vue-cli-service lint",
"dev:server": "NODE_ENV=development nodemon index.js",
"start": "NODE_ENV=production node index.js"
},
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"compression": "^1.7.2",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-status-monitor": "^1.1.4",
"express-validation": "^1.0.2",
"objectmodel": "^3.7.3",
"query-string": "^6.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "*",
"@vue/cli-plugin-babel": "^3.0.0",
"@vue/cli-plugin-eslint": "^3.0.0",
"@vue/cli-plugin-pwa": "^3.0.0",
"@vue/cli-service": "^3.0.0",
"axios": "^0.18.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.0.0",
"cucumber": "^4.2.1",
"dotenv-webpack": "^1.5.7",
"eslint": "^5.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"glob-all": "^3.1.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"node-sass": "^4.9.3",
"nodemon": "^1.17.5",
"nyc": "^12.0.2",
"postcss-import": "^12.0.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"purgecss-webpack-plugin": "^1.2.1",
"register-service-worker": "^1.0.0",
"sass-loader": "^7.1.0",
"sinon": "^6.1.4",
"tailwindcss": "*",
"vue": "^2.5.17",
"vue-material-design-icons": "^1.6.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"keywords": [
"monitoring",
"nodejs"
],
"author": "Purwandi <[email protected]>",
"bugs": {
"url": "https://github.com/purwandi/project.io/issues"
},
"homepage": "https://github.com/purwandi/project.io#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/purwandi/project.io.git"
},
"main": "server.js",
"description": "Manage issues like a boss",
"license": "Apache-2.0"
}