-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 2.3 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
{
"name": "aw-clock",
"version": "3.5.3",
"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 node-sass ../src/styles.scss ../src/styles.css && cd ..",
"build:prod": "node build.js -p",
"lint": "eslint '**/*.ts' '**/*.js'"
},
"private": true,
"dependencies": {
"@tubular/astronomy": "^3.5.1",
"@tubular/math": "^3.3.1",
"@tubular/time": "^3.8.14",
"@tubular/util": "^4.13.1",
"compare-versions": "^4.1.3",
"jquery": "^3.6.0",
"js-cookie": "^3.0.1",
"rxjs": "^6.6.7",
"simple-keyboard": "^3.4.113"
},
"devDependencies": {
"@types/copyfiles": "^2.4.1",
"@types/follow-redirects": "^1.14.1",
"@types/jquery": "^3.5.14",
"@types/js-cookie": "^3.0.2",
"@types/node": "^16.11.39",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"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": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"postcss-import": "^14.1.0",
"raw-loader": "^4.0.2",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}