-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "sympa-vue",
"version": "0.0.1",
"description": "Web interface for Sympa",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --progress --colors",
"build": "rm -rf dist/* && NODE_ENV=production webpack -p",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint --ext .js,.vue .",
"test:unit": "true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sympa-community/sympa-vue.git"
},
"keywords": [
"sympa"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sympa-community/sympa-vue/issues"
},
"homepage": "https://github.com/sympa-community/sympa-vue#readme",
"devDependencies": {
"@webpack-blocks/babel6": "^0.4.1",
"@webpack-blocks/dev-server2": "^0.4.0",
"@webpack-blocks/extract-text2": "^0.4.0",
"@webpack-blocks/postcss": "^0.4.2",
"@webpack-blocks/webpack2": "^0.4.0",
"autoprefixer": "^6.7.7",
"babel-core": "^6.0.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babili-webpack-plugin": "^0.0.11",
"css-loader": "*",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "2.x",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.28.0",
"vue-loader": "^11.3.3",
"vue-template-compiler": "^2.2.6",
"webpack": "^5.94.0",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"gravatar": "^1.6.0",
"vue": "^3.0.0",
"vue-material": "^0.7.1",
"vue-meta": "^0.5.5",
"vue-router": "^2.3.1",
"vuex": "^2.2.1",
"vuex-persistedstate": "^1.3.0"
}
}