-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 979 Bytes
/
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
{
"name": "word-frequencies-web",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"prestart": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/server.js",
"build": "rimraf dist && tsc",
"lint": "eslint . & echo 'lint complete'",
"dev": "nodemon --exec ts-node src/server.ts --watch src",
"prod": "tsc && node ./dist/server.js",
"debug": "tsc && node --inspect ./dist/server.js",
"heroku-postbuild": "tsc && cd client && npm install && npm run build",
"postinstall": "npm run tsc",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.9",
"express": "^4.17.1",
"mobx": "^6.0.4",
"mobx-react": "^7.0.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"devDependencies": {}
}