-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 964 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
34
35
36
37
{
"name": "scrabble-solver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "cd frontend && npm install",
"start": "cross-env NODE_ENV=production node build/server",
"dev": "cross-env NODE_ENV=development ts-node server",
"build": "tsc && cd frontend && npm run build",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.22",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"word-graphs": "^0.2.1"
},
"dependencies": {
"2d-array-rotation": "^2.1.1",
"axios": "^0.26.1",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"fastify": "^3.27.4",
"fastify-cors": "^6.0.3",
"fastify-static": "^4.6.1",
"ora": "^5.4.1"
}
}