-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.93 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
101
102
103
104
105
106
107
{
"name": "imperial-entanglements",
"version": "0.1.1",
"description": "VRE for Imperial Entanglements project",
"main": "./build/app/index.js",
"scripts": {
"postinstall": "typings install",
"dist": "build --x64",
"electron": "electron ./build/app",
"test": "mocha --grep=#api --invert",
"migrate": "knex migrate:latest",
"seed": "knex seed:run",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"docker-pg": "docker run --name ie-postgres -e POSTGRES_PASSWORD=password -e POSTGRES_USER=admin -e POSTGRES_DB=db1 -d postgres",
"gulp": "gulp",
"clean": "rimraf build",
"precompile": "npm run clean",
"compile": "npm-run-all tsc webpack gulp",
"rebuild": "electron-rebuild -f -w sqlite3"
},
"repository": {
"type": "git",
"url": "https://actechlab.warwick.ac.uk/u1572229/imperial-entanglements"
},
"build": {
"appId": "Imperial Entanglements",
"mac": {
"category": "public.app-category.education"
},
"win": {
"iconUrl": "http://www.iconarchive.com/download/i43620/treetog/junior/folder-documents.ico"
}
},
"directories": {
"output": "bin",
"app": ".",
"buildResources": "tmp"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^0.8.7",
"dotenv": "^2.0.0",
"etag": "^1.7.0",
"font-awesome": "^4.7.0",
"graphql": "^0.7.2",
"immutable": "^3.8.1",
"knex": "^0.12.5",
"koa": "^1.2.4",
"koa-bodyparser": "^2.2.0",
"koa-json": "^1.1.3",
"koa-logger": "^1.3.0",
"koa-mount": "^1.3.0",
"koa-passport": "^1.3.0",
"koa-qs": "^2.0.0",
"koa-router": "^5.4.0",
"koa-session": "^3.4.0",
"koa-static": "^2.0.0",
"leaflet": "^1.0.1",
"levenshtein": "^1.0.5",
"lodash": "^4.16.1",
"lunr": "^0.7.1",
"moment": "^2.15.2",
"mousetrap": "^1.6.0",
"normalize.css": "^5.0.0",
"passport-local": "^1.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^4.0.0-alpha.4",
"react-select": "^1.0.0-rc.2",
"react-sortable-hoc": "^0.2.0",
"reflect-metadata": "^0.1.8",
"signals": "^1.0.0",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"electron": "^1.4.7",
"electron-builder": "^8.6.0",
"faker": "^3.1.0",
"bourbon": "^4.2.7",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"chromedriver": "^2.24.1",
"cucumber": "^1.3.1",
"devtron": "^1.4.0",
"gulp": "^3.9.1",
"gulp-nightwatch": "^0.3.2",
"gulp-sass": "^2.3.2",
"mocha": "^3.0.2",
"neat": "^1.2.2",
"nightwatch": "^0.9.8",
"nightwatch-cucumber": "^5.6.1",
"node-refills": "^1.0.1",
"node-sass": "^3.10.0",
"npm-run-all": "^3.1.1",
"rimraf": "^2.5.4",
"source-map-loader": "^0.1.5",
"tslint": "^3.15.1",
"tslint-microsoft-contrib": "^2.0.10",
"typescript": "^2.0.2",
"typings": "^2.0.0",
"webpack": "^2.1.0-beta.25"
}
}