-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.73 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
{
"name": "ich-kann-klima",
"version": "1.0.0",
"description": "## Das Klimawahl Challenge Game",
"scripts": {
"dev": "cross-env NODE_ENV=development vite",
"test": "npm run test:unit && npm run test:ui",
"test:unit": "nyc mocha",
"test:ui": "cypress run",
"build": "vue-tsc --noEmit && vite build && npm run server:build && npm run copy-sources",
"serve": "vite preview",
"start": "cross-env NODE_ENV=production node dist/server.js",
"server:start": "esbuild --bundle --platform=node --sourcemap src/server.ts | node --inspect",
"server:build": "esbuild --bundle --platform=node src/server.ts --outfile=dist/server.js",
"copy-sources": "copyfiles -af sources/* dist/sources",
"docker:build": "docker build -t ichkannklima .",
"docker:start": "docker run -it --rm --name ichkannklima -p 3000:3099 -v $(pwd)/docker-data:/app/data ichkannklima"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neustartklima/ich-kann-klima.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/neustartklima/ich-kann-klima/issues"
},
"homepage": "https://github.com/neustartklima/ich-kann-klima#readme",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"enginesStrict": true,
"dependencies": {
"@types/seedrandom": "^3.0.1",
"apexcharts": "^3.31.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"luxon": "^2.1.1",
"showdown": "^1.9.1",
"uuid": "^8.3.2",
"vue": "^3.2.27",
"vue3-apexcharts": "^1.4.1",
"vue3-click-away": "^1.2.1",
"vuex": "^4.0.2"
},
"devDependencies": {
"@types/event-stream": "^3.3.34",
"@types/express": "^4.17.13",
"@types/luxon": "^2.0.7",
"@types/mocha": "^9.0.0",
"@types/showdown": "^1.9.4",
"@types/sinon": "^10.0.6",
"@types/uuid": "^8.3.3",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.27",
"copyfiles": "^2.4.1",
"cypress": "^9.2.0",
"event-stream": "^4.0.1",
"fast-check": "^2.20.0",
"memfs": "^3.4.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sass": "^1.44.0",
"seedrandom": "^3.0.5",
"should": "^13.2.3",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"vite": "^2.7.13",
"vite-plugin-test": "0.0.5",
"vue-router": "^4.0.12",
"vue-tsc": "^0.30.6"
},
"mocha": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"exit": true,
"spec": [
"tests/**/*.spec.ts"
],
"ui": "bdd"
},
"nyc": {
"all": true,
"exclude": [
"dist",
"hackathon",
"coverage"
],
"reporter": [
"html",
"text-summary",
"lcov"
],
"reporter-dir": "coverage"
}
}