-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "angular-formly-example",
"version": "1.0.0",
"description": "An example app using angular-formly",
"main": "app/index.js",
"webpack": "./node_modules/kcd-common-tools/shared/webpack.config.js",
"scripts": {
"build": "NODE_ENV=development webpack --config $npm_package_webpack --colors --progress && cp app/index.html dist/index.html",
"start": "NODE_ENV=development webpack-dev-server --config $npm_package_webpack --content-base app/ --port 8888 --colors --progress",
"deploy": "scripts/deploy",
"test": "scripts/test.e2e"
},
"repository": {
"type": "git",
"url": "git://github.com/formly-js/angular-formly-example.git"
},
"keywords": [
"angular-formly",
"example"
],
"author": "Kent C. Dodds <[email protected]>",
"contributors": [
"Kent C. Dodds <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/formly-js/angular-formly-example/issues"
},
"homepage": "https://github.com/formly-js/angular-formly-example#readme",
"dependencies": {
"angular": "1.3.16",
"angular-formly": "6.14.0",
"api-check": "7.3.0",
"lodash": "3.9.3"
},
"devDependencies": {
"babel": "5.5.8",
"babel-core": "5.5.8",
"babel-eslint": "3.1.15",
"babel-loader": "5.1.4",
"eslint": "0.22.1",
"eslint-loader": "0.12.0",
"http-server": "0.8.0",
"kcd-common-tools": "1.0.0-beta.2",
"ng-annotate": "1.0.0",
"ng-annotate-loader": "0.0.4",
"node-libs-browser": "0.5.2",
"raw-loader": "0.5.1",
"webpack": "1.9.10",
"webpack-dev-server": "1.9.0"
},
"kcdCommon": {
"webpack": "scripts/webpack-overrides.js"
}
}