-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.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
51
52
53
54
55
56
57
58
59
{
"name": "web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typescript": "tsc",
"babel": " ./node_modules/.bin/babel src --extensions '.ts' --out-dir app --no-comments --copy-files",
"build": "npm run typescript && npm run babel",
"start": "npm run build && node app/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.13",
"@babel/plugin-transform-async-to-generator": "^7.12.13",
"@babel/plugin-transform-for-of": "^7.12.13",
"@babel/plugin-transform-object-super": "^7.12.13",
"@babel/plugin-transform-spread": "^7.12.13",
"@babel/plugin-transform-template-literals": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@jstc/core": "^1.0.19",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.25",
"acorn": "^8.0.5",
"acorn-loose": "^8.0.2",
"acorn-node": "^2.0.1",
"acorn-walk": "^8.0.2",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-plugin-minify-builtins": "^0.5.0",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-minify-guarded-expressions": "^0.4.4",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-minify-simplify": "^0.5.1",
"babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-transform-merge-sibling-variables": "^6.9.4",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.4.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"ts-node": "^9.1.1"
}
}