forked from wouerner/salic-minc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 4.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "salic-minc",
"version": "1.0.0",
"description": "Bem vindo/a à documentação do SALIC! Aqui você vai encontrar diversas documentações sobre o processo de desenvolvimento do SALIC, versionameno e publicação.",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"pre-push-action": "sh git_hooks/pre-push.sh",
"prepare-commit-msg-action": "bash git_hooks/prepare-commit-msg.sh",
"watch": "webpack --watch --config front/build/webpack.watch.conf.js",
"watch:test": "API=test webpack --watch --config front/build/webpack.watch.conf.js",
"dev": "webpack-dev-server --inline --progress --config front/build/webpack.dev.conf.js",
"dev:test": "API=test webpack-dev-server --inline --progress --config front/build/webpack.dev.conf.js",
"build": "node front/build/build.js",
"test": "npm run unit",
"unit": "jest --config front/test/unit/jest.conf.js --coverage",
"e2e": "node front/test/e2e/runner.js",
"cypress:open": "cypress open",
"cypress": "cypress run",
"lint": "eslint --ext .js,.vue front/src front/test/unit front/test/e2e/specs",
"lint-fix": "eslint --fix --ext .js,.vue front/src front/test/unit front/test/e2e/specs",
"dredd": "dredd",
"api-mock": "drakov -f 'front/src/helpers/mock/*.md' -p 4000 --autoOptions",
"api-mock:watch": "drakov -f 'front/src/helpers/mock/*.md' -p 4000 —watch --autoOptions"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-action",
"prepare-commit-msg": "npm run prepare-commit-msg-action"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/culturagovbr/salic-minc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/culturagovbr/salic-minc/issues"
},
"homepage": "https://github.com/culturagovbr/salic-minc#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"aglio": "^2.3.0",
"autoprefixer": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.4",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"cypress": "^3.1.4",
"dotenv": "^6.2.0",
"drakov": "^1.0.4",
"dredd": "^7.2.1",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-vue": "^4.7.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.4.4",
"node-notifier": "^5.3.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^1.2.0",
"portfinder": "^1.0.19",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-url": "^8.0.0",
"sass-loader": "^7.1.0",
"semver": "^5.6.0",
"shelljs": "^0.8.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.1",
"url-loader": "^1.1.2",
"vue-jest": "^3.0.0",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.21",
"vue2-editor": "^2.6.6",
"webpack": "^4.25.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.1.5",
"ajv": "^6.7.0",
"axios": "^0.18.0",
"lodash": "^4.17.5",
"moment": "^2.23.0",
"numeral": "^2.0.6",
"printd": "^1.3.0",
"vue": "^2.5.21",
"diff": "^3.5.0",
"vue-currency-filter": "^3.2.0",
"vue-router": "^3.0.2",
"vuetify": "^1.4.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}