-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
113 lines (113 loc) · 3.64 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "web-languageforge",
"version": "1.0.0",
"description": "Language Forge",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"build:dev": "npm-run-all -p -l sass webpack:dev",
"build:dev:watch": "npm-run-all -p -l sass:watch webpack:dev:watch",
"build:prd": "npm-run-all -p -l sass webpack:prd",
"sass": "sass -q src/sass:src/dist/css",
"sass:watch": "sass -q --watch src/sass:src/dist/css src/Site/views/languageforge/theme/default/sass:src/dist/css src/angular-app:src/dist/css",
"webpack": "webpack",
"webpack:watch": "webpack -w",
"webpack:dev": "webpack --config webpack-dev.config.js",
"webpack:dev:watch": "webpack -w --config webpack-dev.config.js",
"webpack:prd": "webpack --config webpack-prd.config.js",
"compile-test-e2e": "tsc -p test/app",
"test-e2e": "pnpm exec playwright test -c ./test/e2e/playwright.config.ts",
"test-e2e-report": "pnpm exec playwright show-report ./test/e2e/test-results/_html-report",
"prepare": "husky install"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sillsdev/web-languageforge.git"
},
"dependencies": {
"angular": "1.8.2",
"angular-route": "1.8.2",
"angular-sanitize": "1.8.2",
"angular-ui-bootstrap-4": "git+https://github.com/sillsdev/bootstrap.git",
"angular-ui-router": "0.4.3",
"angular-ui-validate": "^1.2.3",
"angular-zxcvbn": "^3.2.2",
"bootstrap": "4.0.0-beta.2",
"date-fns": "^3.6.0",
"deep-diff": "^1.0.2",
"font-awesome": "^4.7.0",
"localforage": "^1.7.1",
"ng-drag-to-reorder": "^1.0.8",
"ng-file-upload": "12.0.4",
"ng-table": "^3.0.1",
"npm-run-all": "^4.1.5",
"oclazyload": "^1.1.0",
"webm-fix-duration": "^1.0.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@playwright/test": "^1.29",
"@prettier/plugin-php": "^0.20.1",
"@types/angular": "1.8.1",
"@types/angular-mocks": "^1.7.0",
"@types/angular-route": "^1.7.1",
"@types/angular-sanitize": "^1.8.0",
"@types/angular-ui-bootstrap": "^1.0.0",
"@types/angular-ui-router": "^1.1.37",
"@types/bootstrap": "^3.3.35",
"@types/core-js": "^0.9.42",
"@types/deep-diff": "^1.0.1",
"@types/dom-mediacapture-record": "^1.0.11",
"@types/jasmine": "^2.8.4",
"@types/jasminewd2": "^2.0.3",
"@types/ng-file-upload": "^12.2.3",
"@types/node": "^17.0.21",
"@types/oclazyload": "0.0.32",
"@types/rangy": "0.0.30",
"@types/webpack-env": "^1.16.0",
"copy-webpack-plugin": "^8.1.0",
"core-js": "^3.6.5",
"css-loader": "^3.6.0",
"file-loader": "^5.1.0",
"glob": "^7.1.2",
"html-loader": "^0.5.5",
"husky": "^8.0.1",
"jasmine-core": "^3.6.0",
"jasmine-reporters": "^2.1.1",
"jasmine-spec-reporter": "^4.1.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^1.3.9",
"mongodb": "^6.6.2",
"ng-annotate-loader": "^0.7.0",
"ngtemplate-loader": "^2.1.0",
"npm-run-all": "^4.1.5",
"prettier": "3.0.3",
"sass": "^1.39.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.3.0",
"tslib": "^2.4.0",
"tslint": "^5.20.1",
"url-loader": "^4.1.1",
"webpack": "5.91.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^6.3.0"
},
"jscsConfig": {
"preset": "airbnb",
"disallowTrailingComma": true,
"requireTrailingComma": false
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}