UNPKG

1.2 kBJSONView Raw
1{
2 "name": "@cortexql/sample",
3 "version": "0.0.1",
4 "licence": "MIT",
5 "description": "",
6 "scripts": {
7 "build": "cortexql build",
8 "start": "cortexql start",
9 "develop": "cortexql develop",
10 "test": "jest",
11 "test:coverage": "jest --coverage",
12 "lint": "tslint -t verbose --project .",
13 "precommit": "lint-staged"
14 },
15 "engines": {
16 "node": ">=6"
17 },
18 "lint-staged": {
19 "*.{ts,tsx}": [
20 "prettier-tslint --write",
21 "git add"
22 ]
23 },
24 "jest": {
25 "transform": {
26 "^.+\\.tsx?$": "ts-jest"
27 },
28 "modulePathIgnorePatterns": [
29 "<rootDir>[/\\\\](dist|node_modules|scripts)[/\\\\]"
30 ],
31 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
32 "moduleFileExtensions": [
33 "ts",
34 "tsx",
35 "js",
36 "jsx",
37 "json",
38 "node"
39 ]
40 },
41 "dependencies": {
42 "@cortexql/core": "^0.0.108",
43 "@cortexql/types": "^0.0.69",
44 "typescript": "^2.8.1"
45 },
46 "devDependencies": {
47 "jest": "^22.4.2",
48 "ts-jest": "^22.4.1",
49 "tslint": "^5.9.1",
50 "prettier-tslint": "^0.3.0",
51 "tslint-config-prettier": "^1.9.0",
52 "tslint-config-airbnb": "^5.7.0",
53 "lint-staged": "^7.0.0"
54 }
55}
\No newline at end of file