forked from ui-router/sample-app-angularjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 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
{
"name": "ui-router-architecture",
"description": "Architecture overview demo for Angular UI-Router",
"version": "1.0.2",
"scripts": {
"start": "npm run watch:compile & npm run serve",
"compile": "./node_modules/typescript/bin/tsc",
"watch:compile": "./node_modules/typescript/bin/tsc -w",
"serve": "lite-server",
"gh-pages": "git checkout gh-pages && git rebase master && rm -rf node_modules && npm install && echo 'If there are any updated modules:' && echo 'git commit -am update_libs' && echo 'git rebase -i' && echo && echo 'Finally:' && echo 'git push origin gh-pages:gh-pages --force' && echo 'git checkout master'"
},
"contributors": [
{
"name": "Chris Thielen",
"web": "https://github.com/christopherthielen"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ui-router/sample-app.git"
},
"dependencies": {
"angular": "<2",
"angular-ui-router": "^1.0.0-beta.2",
"bootstrap": "^3.3.6",
"d3": "^3.5.16",
"font-awesome": "^4.5.0",
"systemjs": "^0.19.24",
"systemjs-plugin-css": "^0.1.20",
"typescript": "^1.8.7",
"ui-router-visualizer": "^2.0.7"
},
"devDependencies": {
"lite-server": "^2.2.2"
}
}