-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.53 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
{
"$schema": "./package.schema.json",
"name": "nodeexpressreactive4",
"version": "0.0.0",
"private": true,
"scripts": {
"load": "node ./lib/compiled/utils/load.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc",
"build:types:watch": "npm run build:types -- --watch",
"build:js": "babel lib/ts --out-dir lib/compiled --source-maps inline",
"build:js:watch": "npm run build:js -- --watch",
"build": "npm run build:types && npm run build:js",
"build:watch": "npm run build:types:watch && npm run build:js:watch",
"start": "node ./lib/compiled/bin/www",
"start:watch": "nodemon ./lib/compiled/bin/www",
"app": "npm run build && npm start",
"app:watch": "npm run build:watch && start:watch",
"build:testfile:types": "tsc ./test/test.ts --target esnext --experimentalDecorators --outFile ./test/test.js",
"build:testfile": "npm run build:testfile:types && babel ./test/test.ts --out-file ./test/compiled-test.js --source-maps inline",
"testfile": "npm run build:testfile && node ./test/compiled-test.js"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"mongodb": "^3.3.3",
"morgan": "~1.9.1",
"node-fetch": "^2.6.0",
"particles.js": "^2.0.0",
"ws": "^7.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/http-errors": "^1.6.2",
"@types/mongodb": "^3.3.8",
"@types/morgan": "^1.7.37",
"@types/node-fetch": "^2.5.3",
"@types/ws": "^6.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-react": "^7.16.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"typescript": "^3.7.2"
},
"babel": {
"presets": [
"@babel/preset-typescript",
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime",
[
"@babel/plugin-proposal-decorators",
{
"decoratorsBeforeExport": true
}
]
]
}
}