-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 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
52
53
54
{
"name": "sample-app-angularjs",
"description": "Sample app for UI-Router for AngularJS",
"version": "1.0.2",
"scripts": {
"clean": "shx rm -rf dist test-results",
"start": "webpack-dev-server --progress --open",
"build": "webpack",
"test": "playwright install chromium && npm run build && playwright test",
"test:ui": "npm run build && playwright test --ui",
"e2e": "npm run test",
"format": "prettier --write \"app/**/*.js\" \"tests/**/*.js\" \"*.js\" \"*.json\"",
"gh-pages": "git checkout gh-pages && git rebase master && npm install && npm run build && git add -f dist && git commit -m 'publish gh-pages' && git push origin gh-pages:gh-pages --force && git checkout master",
"prepare": "husky"
},
"contributors": [
{
"name": "Chris Thielen",
"web": "https://github.com/christopherthielen"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ui-router/sample-app-angularjs.git"
},
"checkPeerDependencies": {
"ignore": [
"ajv",
"picomatch"
]
},
"dependencies": {
"@uirouter/angularjs": "^1.1.2",
"@uirouter/core": "^6.1.2",
"@uirouter/dsr": "^1.2.0",
"@uirouter/sticky-states": "^1.5.1",
"@uirouter/visualizer": "^7.2.1",
"angular": "^1.8.3",
"oclazyload": "^1.1.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"copy-webpack-plugin": "^13.0.1",
"html-webpack-plugin": "^5.6.5",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"serve": "^14.2.5",
"shx": "^0.4.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}