-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.09 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.09 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
{
"name": "aw-clock",
"version": "3.10.0",
"license": "MIT",
"author": "Kerry Shetline <[email protected]>",
"scripts": {
"first-install": "npm i && cd server && npm i && cd .. && cd sass && npm i && cd ..",
"start": "npm run build:build && npm run build:sass && webpack serve --env mode=local --port=4200 --host 0.0.0.0",
"start-server": "cd server && npm start",
"start-server-win": "cd server && npm run start-win",
"build": "node build.js",
"build:build": "webpack -c webpack-build.config.js",
"build:client": "webpack",
"build:client:tiny": "NODE_OPTIONS=--max-old-space-size=640 webpack",
"build:sass": "cd sass && npx sass ../src/styles.scss ../src/styles.css && cd ..",
"build:prod": "node build.js -p",
"lint": "eslint"
},
"private": true,
"dependencies": {
"@tubular/astronomy": "^3.5.6",
"@tubular/math": "^3.4.2",
"@tubular/time": "^3.10.5",
"@tubular/util": "^4.18.2",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
"rxjs": "^6.6.7",
"simple-keyboard": "^3.8.83"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.4.0",
"@types/copyfiles": "^2.4.4",
"@types/follow-redirects": "^1.14.4",
"@types/jquery": "^3.5.33",
"@types/js-cookie": "^3.0.6",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"autoprefixer": "^10.4.7",
"chalk": "^4.1.2",
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^6.4.1",
"copyfiles": "^2.4.1",
"css-loader": "^5.2.7",
"eslint": "^9.36.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.4",
"postcss-import": "^14.1.0",
"raw-loader": "^4.0.2",
"source-map-loader": "^3.0.2",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"url-loader": "^4.1.1",
"webpack": "^5.101.3",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2",
"webpack-node-externals": "^3.0.0"
}
}