-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@adgorithmics/cinnamon-sdk",
"version": "2.0.0",
"description": "Adgorithmics Cinnamon API SDK",
"main": "index.node.js",
"browser": "index.web.js",
"types": "src/index.d.ts",
"files": [
"/src/**/*.d.ts",
"/index.web.js",
"/index.node.js"
],
"scripts": {
"build": "npm run build-types && npm run build-ts",
"build-ts": "webpack",
"build-types": "graphql-codegen --config codegen.yml",
"lint": "concurrently \"npm run lint:eslint\" \"npm run lint:prettier\"",
"lint:eslint": "eslint . --ext ts",
"lint:eslint:fix": "eslint . --ext ts --fix",
"lint:prettier": "prettier \"./src/**/*.ts\" -l --ignore-path .eslintignore",
"lint:prettier:fix": "prettier \"./src/**/*.ts\" --write --ignore-path ./.eslintignore",
"test": "JEST_JUNIT_OUTPUT_DIR='./test-results/jest' JEST_JUNIT_OUTPUT_NAME='result.xml' jest --coverage",
"test:watch": "JEST_JUNIT_OUTPUT_DIR='./test-results/jest' JEST_JUNIT_OUTPUT_NAME='result.xml' jest --watch"
},
"author": "Adgorithmics, Inc.",
"license": "MIT",
"dependencies": {
"@adgorithmics/adgo-errors": "1.7.0",
"@adgorithmics/graphql-errors": "1.6.0",
"cross-fetch": "3.0.4",
"lodash.get": "4.4.2"
},
"devDependencies": {
"@adgorithmics/eslint-config-base": "1.6.1",
"@graphql-codegen/cli": "1.9.1",
"@graphql-codegen/typescript": "1.9.1",
"@graphql-codegen/typescript-resolvers": "1.9.1",
"@types/graphql": "14.5.0",
"@types/jest": "24.0.23",
"@types/lodash.get": "4.4.6",
"@typescript-eslint/eslint-plugin": "2.12.0",
"@typescript-eslint/parser": "2.12.0",
"acorn": "7.1.1",
"concurrently": "5.0.2",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"graphql": "14.5.8",
"jest": "24.9.0",
"jest-junit": "10.0.0",
"prettier": "1.19.1",
"ts-jest": "24.2.0",
"ts-loader": "6.2.1",
"typescript": "3.7.3",
"webpack": "4.41.3",
"webpack-cli": "3.3.10"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"singleQuote": true
}
}