-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.66 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
{
"name": "j-dev-portal",
"version": "1.0.1-SNAPSHOT",
"description": "A frontend source code for J-Dev Portal website",
"private": true,
"main": "src/main.ts",
"typings": "src/typings.d.ts",
"author": {
"name": "Riichi Rusdiana",
"email": "finnsonalca123@gmail.com",
"url": "https://j-dev.xyz"
},
"scripts": {
"test": "npm run cli:lint",
"build": "npm run cli:rebuild && npm run cli:serve",
"dev": "npm run cli:redev && npm run cli:serve",
"cli:serve": "vue-cli-service serve",
"cli:build": "vue-cli-service build",
"cli:rebuild": "rimraf dist && npm run cli:build",
"cli:dev": "vue-cli-service build --mode development",
"cli:redev": "rimraf dist && npm run cli:dev",
"cli:lint": "vue-cli-service lint",
"git:precommit": "git add . && git commit -am \"Precommit made from NPM\" && git push",
"git:deploy": "git add . && git commit -am \"Codeship Deploy from NPM\" && git push origin deploy"
},
"dependencies": {
"core-js": "^2.6.5",
"moment": "^2.24.0",
"vue": "^2.6.6",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^8.0.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-typescript": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-typescript": "^4.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"declaration-bundler-webpack-plugin": "^1.0.3",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"file-loader": "^3.0.1",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-eslint": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"lodash-webpack-plugin": "^0.11.5",
"rimraf": "^2.6.3",
"standard": "^12.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"surge": "^0.20.3",
"ts-loader": "^5.3.3",
"typescript": "^3.4.3",
"url-loader": "^1.1.2",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}