-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.75 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.75 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"watch": "tsc-watch --p . --onSuccess \"npm run compileBabel\" --onFailure \"echo 'TypeScript compilation failed' && exit 1\"",
"watchBableNodeBased": "babel src/NodeBased --out-dir ./_IDE --extensions '.ts' --copy-files --watch",
"watchWebPackWebBased": "cd src/WebBased; webpack --watch",
"watchWebPackWebeDiscovery": "cd src/WebBased/Scripts/eDiscovery; webpack --watch",
"watchModuleLoader": "cd src/WebBased/ModuleLoader; webpack --watch",
"watchAll": "npm run watchBableNodeBased & npm run watchWebPackWebBased",
"typecheck": "tsc --p .",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck-compile": "npm run typecheck && npm run compile"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/knockout.validation": "^0.0.39",
"@types/vscode": "^1.80.0",
"complementary-colors": "^1.0.6",
"font-awesome": "^4.7.0",
"invert-color": "^2.0.0",
"knockout": "^3.5.1",
"knockout.validation": "^2.0.4",
"moment": "^2.29.4"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-transform-modules-amd": "^7.20.11",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.18.6",
"@types/color": "^3.0.3",
"@types/jquery": "^3.5.16",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"rimraf": "^5.0.1",
"ts-deferred": "^1.0.4",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.3",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0"
}
}