-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
34 lines (34 loc) · 900 Bytes
/
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
{
"name": "ng-hot-reload",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint packages",
"test": "karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --auto-watch=true --log-level=debug",
"build": "lerna run build",
"build:prod": "lerna run build:prod"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"angular": "1.8.2",
"angular-mocks": "^1.8.2",
"babel-loader": "8.2.3",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"eslint-webpack-plugin": "^3.1.1",
"jasmine-core": "^4.0.0",
"karma": "^6.3.13",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-webpack": "5.0.0",
"lerna": "4.0.0",
"webdriver-manager": "^12.1.8",
"webpack": "5.68.0",
"yargs": "^17.3.1"
},
"workspaces": [
"packages/*"
]
}