forked from Apemb/puissance_4_ts_starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 797 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
{
"name": "puissance_4_ts_starter",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"build": "npx tsc",
"start": "ts-node src/main.ts",
"test": "mocha --recursive --exit --require ts-node/register 'tests/**/*.test.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^18.15.3",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"chai": "^4.3.7",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"typescript": "^5.0.2"
}
}