-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
82 lines (82 loc) · 2.39 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
{
"name": "openstudio-pat",
"version": "3.8.0",
"devDependencies": {
"@babel/core": "~7.19.3",
"@babel/eslint-parser": "~7.19.1",
"@babel/preset-env": "~7.19.3",
"@playwright/test": "~1.26.1",
"@rollup/plugin-babel": "~5.3.1",
"asar": "~3.2.0",
"babel-plugin-angularjs-annotate": "~0.10.0",
"browser-sync": "~2.27.10",
"browser-sync-spa": "~1.0.3",
"chalk": "~5.0.1",
"electron": "~21.0.1",
"eslint-plugin-angular": "~4.1.0",
"eslint-plugin-lodash": "~7.4.0",
"fancy-log": "~2.0.0",
"fs-jetpack": "~5.0.0",
"gulp": "~4.0.2",
"gulp-angular-templatecache": "~3.0.1",
"gulp-autoprefixer": "~8.0.0",
"gulp-clean": "~0.4.0",
"gulp-csso": "~4.0.1",
"gulp-eslint": "~6.0.0",
"gulp-filter": "~7.0.0",
"gulp-flatten": "~0.4.0",
"gulp-htmlmin": "~5.0.1",
"gulp-inject": "~5.0.5",
"gulp-load-plugins": "~2.0.8",
"gulp-ng-annotate": "~2.1.0",
"gulp-rename": "~2.0.0",
"gulp-replace": "~1.1.3",
"gulp-rev": "~9.0.0",
"gulp-rev-replace": "~0.4.4",
"gulp-sass": "~5.1.0",
"gulp-size": "~4.0.1",
"gulp-sort": "~2.0.0",
"gulp-sourcemaps": "~3.0.0",
"gulp-streamify": "~1.0.2",
"gulp-uglify": "~3.0.2",
"gulp-useref": "~5.0.0",
"lazypipe": "~1.0.2",
"lodash": "~4.17.21",
"merge-stream": "~2.0.0",
"prettier": "~2.7.1",
"q": "~1.5.1",
"request": "~2.88.2",
"request-progress": "~3.0.0",
"rollup": "~2.79.1",
"sass": "~1.55.0",
"tar-fs": "~2.1.1",
"through2": "~4.0.2",
"tree-kill": "~1.2.2",
"uglify-save-license": "~0.4.1",
"vinyl-source-stream": "~2.0.0",
"yargs": "~17.6.0"
},
"optionalDependencies": {
"gulp-debug": "~4.0.0",
"rcedit": "~0.4.0"
},
"engines": {
"node": "^18"
},
"scripts": {
"postinstall": "cd app && npm install",
"build": "npx gulp build",
"release": "npx gulp release --env=production",
"start": "node ./tasks/start",
"start:dist": "node ./tasks/start --env=production",
"test:build": "npm run build -- --env=test",
"test:tmpFiles": "npx gulp tmpTestFiles",
"test:setup": "npm run test:build && npm run test:tmpFiles",
"test:parallel": "npx playwright test",
"test:serial": "npx playwright test -c playwright-serial.config.ts",
"test": "npm run test:setup && npm run test:parallel && npm run test:serial"
},
"browserslist": [
"electron >= 20"
]
}