-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.71 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
{
"name": "daily-page",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "^22"
},
"type": "module",
"scripts": {
"pretest": "eslint --fix app.js server/ lib/backendHelper.js lib/clearSelection.js lib/dateHelper.js",
"test": "jasmine",
"start": "node --trace-deprecation app.js",
"build": "babel lib -d build",
"compile": "browserify build/main.js -o public/js/bundle.js && browserify build/clearSelection.js -o public/js/clearSelection.js && browserify build/iPod.js -o public/js/iPod.js && browserify build/analyzeBPM.js -o public/js/analyzeBPM.js",
"postinstall": "npm run build && npm run compile",
"local": "npm run build && npm run compile && npm start",
"perform": "babel-node performance/script.js",
"perform-linear": "babel-node performance/scriptLinear.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rcalfredson/daily-page.git"
},
"author": "Robert C. Alfredson",
"license": "MIT",
"bugs": {
"url": "https://github.com/rcalfredson/daily-page/issues"
},
"homepage": "https://github.com/rcalfredson/daily-page",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"autolinker": "^1.8.3",
"axios": "^1.7.4",
"bluebird": "^3.7.2",
"body-parser": "^1.20.3",
"browserify": "^16.5.2",
"core-js": "^3.32",
"cors": "^2.8.5",
"cron": "^1.8.2",
"easymde": "^2.15.0",
"express": "^4.21.2",
"feather-icons": "^4.28.0",
"fluent-ffmpeg": "^2.1.2",
"googleapis": "^144.0.0",
"humanize-duration": "^3.24.0",
"jquery": "^3.5.1",
"jsdom": "^20.0.0",
"jsonwebtoken": "^9.0.1",
"memory-cache": "^0.2.0",
"moment-timezone": "^0.5.31",
"mongodb": "^6",
"nodemailer": "^6.9.16",
"peer": "^1",
"pug": "^3.0.1",
"realtime-bpm-analyzer": "^4.0.2",
"rxjs": "^5.5.2",
"sanitize-html": "^2.12.1",
"showdown": "^1.9.1",
"slug": "^4.0.4",
"sorted-cmp-array": "^2.0.1",
"strip-bom": "^4.0.0",
"uuid": "^8"
},
"overrides": {
"whatwg-url": "^14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.0.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"jasmine": "^2.8.0"
}
}