-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@black-tools/anchor",
"version": "0.0.27",
"description": "A small framework for builiding neat web servers",
"main": "dist",
"types": "dist",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"serve": "nodemon --watch '**/*.ts' --ignore '**/*.spec.ts' --exec 'ts-node' test/main.ts",
"upload": "npm run build && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/black-tools/modelr.git"
},
"author": "",
"private": false,
"license": "",
"bugs": {
"url": "https://github.com/black-tools/modelr/issues"
},
"homepage": "https://github.com/black-tools/modelr#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/core-js": "^2.5.0",
"concurrently": "^3.6.0",
"html-webpack-plugin": "^3.2.0",
"json-server": "^0.13.0",
"nodemon": "^1.18.1",
"pg": "^7.4.3",
"sequelize": "^4.38.0",
"ts-loader": "^4.3.0",
"ts-node": "^6.2.0",
"typescript": "^2.8.3",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"reflect-metadata": "^0.1.12",
"socket.io": "^2.2.0",
"urljoin": "^0.1.5"
}
}