-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.1 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
91
92
93
94
95
96
97
98
99
100
101
{
"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": {
"start": "bin/start.sh",
"eslint": "tsc --noEmit && eslint -c .eslint.config.ts .",
"stylelint": "stylelint codemancer/css/*",
"shellcheck": "git ls-files | grep -F .sh | xargs shellcheck --exclude=SC1091",
"test": "pnpm run test-node && pnpm run stylelint && pnpm run shellcheck",
"test-node": "pnpm run eslint && pnpm run cover-node && pnpm run cover-report && pnpm run build:dev && pnpm run wdio",
"cover-node": "c8 --clean=false mocha",
"cover-report": "c8 report",
"build:dev": "webpack-cli --mode=development",
"build:prod": "webpack-cli --mode=production --config-node-env=production",
"watch": "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.4.2",
"@types/dotenv-webpack": "^7.0.8",
"@types/express": "^5.0.6",
"@types/jquery": "^4.0.1",
"@types/node": "^26.2.0",
"@types/suncalc": "^1.9.2",
"app-root-path": "^3.1.0",
"axios": "^1.19.0",
"core-js": "^3.50.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"dotenv": "^17.4.2",
"dotenv-webpack": "^9.0.0",
"express": "^5.2.1",
"jquery": "^4.0.0",
"logfit": "^0.9.3",
"mini-css-extract-plugin": "^2.10.2",
"morgan": "^1.11.0",
"mustache": "^4.2.0",
"rollbar": "^3.1.0",
"rotating-file-stream": "^3.2.9",
"suncalc": "^2.0.1",
"ts-loader": "^9.6.2",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"varsnap": "^1.14.0",
"webpack": "^5.109.2",
"webpack-cli": "^7.2.2",
"webpack-dev-middleware": "^8.1.1",
"webpack-manifest-plugin": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/morgan": "^1.9.10",
"@types/mustache": "^4.2.6",
"@types/sinon": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@wdio/browser-runner": "^9.30.1",
"@wdio/cli": "^9.30.1",
"@wdio/mocha-framework": "^9.30.1",
"@wdio/spec-reporter": "^9.30.1",
"c8": "^12.0.0",
"chai": "^6.2.2",
"eslint": "^10.8.1",
"globals": "^17.10.0",
"html-webpack-plugin": "^5.6.8",
"mocha": "^11.8.0",
"sinon": "^22.1.0",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.67.0"
}
}