forked from openspending/os-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.83 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
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": "os-viewer",
"version": "0.1.0-alpha",
"description": "A frontend data/views app powered directly from a Fiscal Data Package.",
"keywords": [],
"main": "index.js",
"scripts": {
"start": "lookenv --dotenv -- node index.js",
"start:dev": "nodemon npm run develop",
"test": "mocha tests/*.js",
"posttest": "npm run review",
"review": "eslint app tests index.js gulpfile.js webpack.config.js --ignore-pattern 'app/views/snippets/*'",
"develop": "npm run build && npm start",
"debug": "npm run build && node --inspect index.js",
"build:assets": "gulp",
"build:app": "webpack --hide-modules --config webpack.config.js",
"build": "npm run build:assets && npm run build:app",
"dev-watch": "npm run build:app -- --watch"
},
"engines": {
"node": "^8.7.0",
"npm": "^5.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openspending/os-viewer.git"
},
"author": {
"name": "Open Knowledge",
"email": "info@okfn.org",
"url": "https://okfn.org/"
},
"contributors": [
{
"name": "Levko Kravets",
"email": "kravets@qarea.com"
}
],
"license": "MIT",
"bugs": "https://github.com/openspending/os-viewer/issues",
"homepage": "https://github.com/openspending/os-viewer#readme",
"dependencies": {
"angular": "^1.5.8",
"angular-animate": "^1.5.8",
"angular-filter": "^0.5.9",
"angular-marked": "^1.2.2",
"babbage.ui": "^1.6.3",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"bubbletree": "^2.1.0",
"c3": "^0.4.18",
"d3": "^3.5.14",
"express": "^4.13.3",
"file-saver": "^1.3.3",
"font-awesome": "^4.5.0",
"isomorphic-fetch": "^2.2.1",
"jquery": "^2.1.4",
"js-polyfills": "^0.1.12",
"lodash": "^4.6.1",
"lookenv": "^0.6.3",
"lru-cache": "^4.0.2",
"marked": "~0.3.9",
"nconf": "^0.8.2",
"node-polyglot": "^2.0.0",
"normalize-url": "^1.6.0",
"nunjucks": "^2.1.0",
"os-bootstrap": "git+https://github.com/openspending/os-bootstrap.git",
"os-styles": "^0.0.2",
"papaparse": "^4.1.2",
"qs": "^6.2.0",
"raven": "^2.2.1",
"raven-js": "^3.20.1",
"request": "^2.65.0",
"require-dir-all": "^0.4.9",
"text-encoding": "^0.6.1"
},
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^3.14.1",
"eslint-config-google": "^0.7.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-clean-css": "^2.0.0",
"gulp-concat": "^2.6.0",
"gulp-less": "^3.0.5",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"json-loader": "^0.5.4",
"mocha": "^3.4.2",
"nock": "^7.2.2",
"nodemon": "^1.17.2",
"null-loader": "^0.1.1",
"raw-loader": "^0.5.1",
"supertest": "^1.2.0",
"val-loader": "^0.5.0",
"webpack": "^1.14.0",
"zombie": "^4.2.1"
}
}