-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "toy-robot-simulator",
"version": "0.0.2",
"main": "src/main.ts",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development nodemon",
"lint": "yarn lint:app && yarn lint:yaml && echo 'Done lint.'",
"lint:app": "eslint . --ext .js,.jsx,.ts,.tsx --cache && echo 'Done lint:app.'",
"lint:yaml": "yamllint . && echo 'Done lint:yaml.'",
"build": "rimraf dist && tsc --declaration",
"dc": "docker-compose -f docker/docker-compose.yml",
"dcr": "yarn dc run --rm",
"test": "mocha"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/assert": "^1.5.6",
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"@types/node": "16.11.11",
"@types/prettier": "2.4.2",
"@types/rimraf": "^3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "9.1.3",
"nodemon": "2.0.15",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-node": "10.4.0",
"typescript": "^4.5.2"
},
"engines": {
"node": "16.13.1"
},
"packageManager": "[email protected]"
}