-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.94 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.94 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "website",
"author": "Mark Chapman <support@forms-angular.org>",
"version": "0.11.0",
"description": "The demonstration website for the forms-angular library",
"repository": {
"type": "git",
"url": "https://github.com/forms-angular/website"
},
"knownIssue": [
"For some reason npm -i sometimes comes up with ENOENT errors (generally saying .staging somewhere in them)",
"A way round them appears to be:",
" npm -g i npm@5.2",
" npm cache clear --force",
" rm -rf node_modules/",
" mv package.json old.package.json",
" npm i forms-angular --production",
" npm i fng-jq-upload --production",
" mv old.package.json package.json",
" npm i --production"
],
"dependencies": {
"body-parser": "1.18.2",
"compression": "1.7.1",
"errorhandler": "1.5.0",
"express": "^4.16.2",
"fng-audit": "0.11.x",
"fng-jq-upload": "^0.12.0-beta.1",
"forms-angular": "0.11.x",
"lodash": "4.17.4",
"method-override": "2.3.7",
"mongoose": "^4.13.3",
"morgan": "1.8.0",
"optipng-bin": "^4.0.0",
"serve-favicon": "2.4.5",
"underscore": "^1.8.3"
},
"ndevDependencies": {
"node-inspector": "0.12.8",
"grunt-node-inspector": "0.4.2"
},
"devDependencies": {
"connect-livereload": "0.6.0",
"grunt": "1.0.1",
"grunt-autoprefixer": "3.0.4",
"grunt-concurrent": "2.3.1",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "2.2.1",
"grunt-contrib-htmlmin": "2.4.0",
"grunt-contrib-imagemin": "^2.0.1",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-less": "1.4.1",
"grunt-contrib-uglify": "3.2.1",
"grunt-contrib-watch": "1.0.0",
"grunt-env": "0.4.4",
"grunt-express-server": "0.5.3",
"grunt-karma": "2.0.0",
"grunt-mocha-test": "0.13.3",
"grunt-newer": "1.3.0",
"grunt-ng-annotate": "3.0.0",
"grunt-nodemon": "0.4.2",
"grunt-open": "0.2.3",
"grunt-protractor-runner": "5.0.0",
"grunt-rev": "0.1.0",
"grunt-svgmin": "5.0.0",
"grunt-usemin": "3.1.1",
"grunt-wiredep": "3.0.1",
"jshint-stylish": "2.2.1",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-coffee-preprocessor": "1.0.1",
"karma-firefox-launcher": "1.0.1",
"karma-html2js-preprocessor": "1.1.0",
"karma-jasmine": "1.1.0",
"karma-ng-html2js-preprocessor": "1.0.0",
"karma-ng-scenario": "1.0.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-requirejs": "1.1.0",
"karma-script-launcher": "1.0.0",
"load-grunt-tasks": "3.5.2",
"mocha": "3.2.0",
"open": "0.0.5",
"phantomjs-prebuilt": "2.1.14 ",
"protractor": "5.2.0",
"protractor-jasmine2-screenshot-reporter": "0.5.0",
"requirejs": "2.3.5",
"should": "13.1.3",
"supertest": "3.0.0",
"time-grunt": "1.4.0"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test"
},
"license": "MIT"
}