-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.34 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.34 KB
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
{
"name": "emptyjar",
"version": "1.0.0",
"description": "A self-hosted analytics system that doesn't use cookies",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"build:watch": "webpack --mode=development --watch",
"prettier": "prettier --write \"**/*.js\"",
"postinstall": "npm run build",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"projects": [
{
"displayName": "server",
"testMatch": [
"<rootDir>/server/**/__tests__/*.js"
],
"testPathIgnorePatterns": [
".testData.js"
],
"coveragePathIgnorePatterns": [
".testData.js"
]
},
{
"displayName": "client",
"testEnvironment": "jsdom",
"testMatch": [
"<rootDir>/client/**/__tests__/*.js"
],
"testPathIgnorePatterns": [
".testData.js"
],
"coveragePathIgnorePatterns": [
".testData.js"
],
"setupFiles": [
"jest-canvas-mock"
]
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeFoodPixels/EmptyJar.git"
},
"author": "Luke Bonaccorsi",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeFoodPixels/EmptyJar/issues"
},
"homepage": "https://github.com/CodeFoodPixels/EmptyJar#readme",
"dependencies": {
"bowser": "^2.11.0",
"chart.js": "^3.7.1",
"country-list": "^2.2.0",
"date-fns": "^2.28.0",
"geoip-country": "^3.4.1",
"is-plain-object": "^5.0.0",
"mime-types": "^2.1.35",
"mongodb": "^3.7.3",
"react": "^18.0.0",
"react-chartjs-2": "^4.1.0",
"react-day-picker": "^8.0.4",
"react-dom": "^18.0.0",
"sqlite3": "^5.0.5"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@types/jest": "^27.4.1",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"prettier": "^1.19.1",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}