-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.73 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
{
"name": "angular-seed",
"private": true,
"version": "0.0.0",
"description": "A starter project for AngularJS",
"repository": "https://github.com/angular/angular-seed",
"license": "MIT",
"dependencies": {
"angular": "^1.7.5",
"angular-loader": "^1.7.5",
"angular-route": "^1.7.5",
"bootstrap": "^4.3.1",
"html5-boilerplate": "0.0.1",
"jquery": "^3.4.1",
"popper.js": "^1.15.0",
"webpack": "^4.39.3"
},
"devDependencies": {
"angular-mocks": "^1.7.5",
"cpx": "^1.5.0",
"css-loader": "^3.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"jasmine-core": "^3.3.0",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.2",
"protractor": "^5.4.1",
"style-loader": "^1.0.0",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"scripts": {
"postinstall": "npm run copy-libs",
"build": "webpack",
"dev": "webpack-dev-server --host 0.0.0.0",
"update-deps": "npm update",
"postupdate-deps": "npm run copy-libs",
"copy-libs": "cpx \\\"node_modules/{angular,angular-*,html5-boilerplate/dist}/**/*\\\" src/app/lib -C",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1 src/app",
"pretest": "npm install",
"test-single-run": "npm test -- --single-run",
"preupdate-webdriver": "npm install",
"//": "Do not install the Firefox driver to work around https://github.com/angular/webdriver-manager/issues/303.",
"update-webdriver": "webdriver-manager update --gecko false",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js"
}
}