-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.05 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
{
"name": "codemancer",
"version": "1.0.0",
"description": "https://www.codemancer.com/",
"directories": {
"test": "tests"
},
"type": "module",
"sideEffects": [
"./codemancer/js/ganalytics.ts",
"./codemancer/js/index.ts",
"./codemancer/js/logfit.ts",
"./codemancer/js/varsnap.ts",
"./server/app.ts",
"*.css"
],
"scripts": {
"run": "bin/start.sh",
"eslint": "tsc --noEmit && eslint -c .eslint.config.js .",
"stylelint": "stylelint codemancer/css/*",
"shellcheck": "git ls-files | grep -F .sh | xargs shellcheck --exclude=SC1091",
"test": "npm run shellcheck && npm run stylelint && npm run test-node",
"test-node": "npm run eslint && npm run build:dev && npm run wdio",
"build:dev": "tsx node_modules/.bin/webpack-cli --mode=development",
"build:prod": "tsx node_modules/.bin/webpack-cli --mode=production --node-env=production",
"watch": "tsx node_modules/.bin/webpack-cli --watch",
"wdio": "wdio run ./wdio.conf.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertyw/codemancer.git"
},
"author": "Albert Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/albertyw/codemancer/issues"
},
"homepage": "https://github.com/albertyw/codemancer#readme",
"private": true,
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.16",
"@types/dotenv-webpack": "^7.0.8",
"@types/express": "^5.0.0",
"@types/jquery": "^3.5.5",
"@types/suncalc": "^1.9.2",
"app-root-path": "^3.0.0",
"axios": "^1.0.0",
"core-js": "^3.36.1",
"css-loader": "^7.0.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv": "^16.0.0",
"dotenv-webpack": "^8.0.1",
"express": "^4.17.1",
"jquery": "^3.5.1",
"logfit": "^0.9.0",
"mini-css-extract-plugin": "^2.7.5",
"morgan": "^1.10.0",
"mustache": "^4.1.0",
"rollbar": "^2.19.4",
"rotating-file-stream": "^3.0.2",
"suncalc": "^1.9.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.0.0",
"varsnap": "^1.6.4",
"webpack": "^5.79.0",
"webpack-cli": "^6.0.0",
"webpack-dev-middleware": "^7.0.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/app-root-path": "^1.2.4",
"@types/chai": "^5.0.0",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.0",
"@types/morgan": "^1.9.2",
"@types/mustache": "^4.1.0",
"@types/node": "^22.0.0",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.24",
"@typescript-eslint/parser": "^8.0.0-alpha.24",
"@wdio/browser-runner": "^9.0.0",
"@wdio/cli": "^9.0.0",
"@wdio/mocha-framework": "^9.0.0",
"@wdio/spec-reporter": "^9.0.0",
"chai": "^5.0.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^10.0.0",
"sinon": "^19.0.0",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"ts-mocha": "^10.0.0",
"typescript-eslint": "^8.0.0-alpha.24"
}
}