-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 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
46
47
48
49
50
51
52
{
"name": "machine-learning",
"version": "0.0.3",
"private": true,
"author": {
"name": "KEMBL",
"url": "https://github.com/KEMBL"
},
"scripts": {
"start": "ts-node -P tsconfig.json ./src/index.ts",
"start-mobile": "tsc --p tsconfig-mobile.json && node build/index.js",
"compile": "tsc --build --verbose",
"purge": "yarn clean:all && yarn && yarn prepare:all",
"lint": "eslint -c .eslintrc.js --ext .ts --ignore-pattern *.d.ts ./src",
"lint:fix": "eslint -c .eslintrc.js --ext .ts --ignore-pattern *.d.ts --fix ./src",
"format": "prettier --write src/**/*.ts",
"pre-commit": "yarn lint:fix && yarn format"
},
"bugs": {
"url": "https://github.com/KEMBL/machine-learning/issues"
},
"homepage": "https://github.com/KEMBL/machine-learning",
"keywords": [
"machine-learning",
"neuron",
"react-native-web",
"react-navigation",
"redux",
"monorepo",
"workspaces"
],
"repository": {
"type": "git",
"url": "https://github.com/KEMBL/machine-learning.git"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^11.11.3",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}