forked from openspending/os-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.3 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
{
"name": "os-admin",
"version": "0.1.0",
"description": "A frontend app for manage Fiscal Data Packages",
"main": "app/index.html",
"engines": {
"node": "^8.7.0",
"npm": "^5.4.0"
},
"dependencies": {
"angular": "^1.5.5",
"angular-animate": "^1.5.5",
"angular-marked": "^1.2.0",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.3.5",
"dotenv": "^5.0.0",
"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",
"os-bootstrap": "git+https://github.com/openspending/os-bootstrap.git",
"os-mockups": "git+https://github.com/smth/os-mockups.git",
"os-styles": "^0.0.2",
"raven-js": "^3.20.1"
},
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^3.12.0",
"eslint-config-google": "^0.7.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-less": "^3.0.5",
"gulp-minify-css": "^1.2.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"json-loader": "^0.5.4",
"mocha": "^2.3.3",
"nock": "^8.0.0",
"nodemon": "^1.17.2",
"raw-loader": "^0.5.1",
"resolve": "^1.1.6",
"stringify": "^5.1.0",
"supertest": "^1.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^1.14.0",
"zombie": "^4.2.1"
},
"scripts": {
"start": "lookenv --dotenv -- node server.js",
"start:dev": "lookenv --dotenv -- nodemon server.js",
"test": "mocha tests/*.js",
"posttest": "npm run review",
"review": "eslint app tests gulpfile.js webpack.config.js",
"build:assets": "gulp",
"build:app": "webpack --hide-modules --config webpack.config.js",
"build": "npm run build:assets && npm run build:app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openspending/os-admin.git"
},
"author": {
"name": "Open Knowledge",
"email": "[email protected]",
"url": "https://okfn.org/"
},
"contributors": [
{
"name": "Levko Kravets",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/openspending/os-admin/issues"
},
"homepage": "https://github.com/openspending/os-admin#readme"
}