-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·53 lines (53 loc) · 1.28 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
{
"name": "planning-poker-app",
"description": "The JS-part of a Django app to enable teams to do remote poker sessions.",
"repository": {
"type": "git",
"url": "https://github.com/rheinwerk-verlag/planning-poker"
},
"author": {
"name": "Rheinwerk Webteam",
"email": "webteam@rheinwerk-verlag.de"
},
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"build": "webpack",
"build-dev": "webpack --watch --mode=development --devtool inline-source-map",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@vue/test-utils": "^1.2.2",
"ajv": "^6.9.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"css-loader": "^6.2.0",
"gettext-vue": "^0.4.1",
"jest": "^26.6.3",
"jsdoc": "^3.6.7",
"postcss": "^8.3.6",
"vue": "^2.6.14",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.[jt]sx?$": "babel-jest",
".*\\.(vue)$": "vue-jest"
},
"coverageReporters": [
"cobertura",
"text"
]
}
}