-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
{
"name": "discrete_knapsack_problem",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon",
"test": "jest",
"node": "tsc && node --harmony --use_strict ./dist/index.js",
"perf": "ts-node ./__tests__/performance.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prettier": "prettier -c ./{src,test}/**/*.ts",
"prettier:fix": "prettier -w ./{src,test}/**/*.ts"
},
"author": "Cyranowski Kacper",
"license": "ISC",
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/decimal.js": "^7.4.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.27",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"benchmark": "^2.1.4",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"decimal.js": "^10.2.1"
}
}