-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.88 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
{
"name": "alakajam",
"version": "2.0.0-dev",
"description": "Website powering the Alakajam! game making community",
"license": "MIT",
"main": "dist/server/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"start": "node dist/server/index.js",
"start:watch": "node ./node_modules/ts-node-dev/bin/ts-node-dev -r tsconfig-paths/register server/index.ts patch-ormconfig-ts-node",
"test": "mocha -r ts-node/register -r tsconfig-paths/register server/**/*.spec.ts",
"migration:run": "tsc && typeorm migration:run --config config",
"migration:revert": "tsc && typeorm migration:revert --config config",
"debug": "node --inspect -r ts-node/register -r tsconfig-paths/register server/index.ts",
"lint": "tslint --project tsconfig.json --fix && tslint --project cypress/tsconfig.json --fix",
"docs": "typedoc --out dist/docs"
},
"repository": {
"type": "git",
"url": "https://github.com/alakajam-team/alakajam-poc.git"
},
"bugs": {
"url": "https://github.com/alakajam-team/alakajam-poc/issues"
},
"dependencies": {
"express": "^4.16.4",
"express-nunjucks": "^2.2.3",
"express-promise-router": "^3.0.2",
"find-up": "^3.0.0",
"mkdirp": "^0.5.1",
"module-alias": "^2.2.0",
"moment": "^2.24.0",
"nunjucks": "^3.2.0",
"optional-require": "^1.0.0",
"pg": "^7.9.0",
"pkg-up": "^2.0.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.0.6",
"typeorm": "^0.2.15",
"webpack": "^4.29.6",
"winston": "^2.4.4"
},
"optionalDependencies": {},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@fortawesome/fontawesome-free": "^5.7.2",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.1",
"@types/express-promise-router": "^2.0.1",
"@types/find-up": "^2.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.1",
"@types/nunjucks": "^3.1.1",
"@types/sinon": "^7.0.10",
"@types/winston": "^2.3.9",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"bootstrap": "^4.3.1",
"bootstrap.native": "^2.0.25",
"chai": "^4.2.0",
"css-loader": "^1.0.1",
"cssnano": "^4.1.10",
"cypress": "^3.2.0",
"file-loader": "^2.0.0",
"mocha": "^6.0.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"sinon": "^7.2.7",
"style-loader": "^0.23.1",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.32",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"url-loader": "^1.1.2",
"vue": "^2.6.9",
"vue-json-tree-view": "^2.1.4",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"browserslist": [
">1%",
"last 2 versions",
"IE >= 9"
],
"_moduleAliases": {
"server": "dist/server"
}
}