-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "a-word-please",
"version": "1.0.0",
"main": "built/index.js",
"author": "Gordon Koo <[email protected]>",
"license": "MIT",
"engines": {
"node": "14.3.x",
"yarn": "1.15.x"
},
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.19",
"socket.io": "^2.4.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/types": "^7.11.5",
"@types/jest": "^26.0.13",
"@types/socket.io": "^2.1.11",
"eslint": "^6.6.0",
"jest": "24.9.0",
"mock-express": "^1.3.1",
"nodemon": "^2.0.4",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^4.0.2"
},
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development ts-node-dev --respawn src/server/index.ts",
"heroku-postbuild": "yarn build && cd src/client && yarn && yarn run build",
"start": "NODE_ENV=production node built/index.js",
"client": "cd src/client && yarn start",
"test": "jest",
"lint": "eslint src/server/*"
}
}