-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@rest/fullstack",
"version": "1.0.0",
"description": "A simple REST app with Apollo",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@commitlint/cli": "6.0.5",
"@commitlint/config-conventional": "6.0.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"jest-runner-eslint": "^0.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-okonet": "^7.0.2",
"eslint-config-shellscape": "^2.0.2",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"lerna": "^3.8.4",
"lint-staged": "^7.3.0",
"pre-commit": "^1.2.2",
"prettier": "^1.15.1",
"typescript": "^3.0.3",
"typescript-eslint-parser": "^18.0.0"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 100",
"yarn jest:lint --passWithNoTests",
"git add"
],
"*.yml": [
"prettier --write",
"git add"
]
},
"main": "index.js",
"pre-commit": "lint:staged",
"private": true,
"scripts": {
"jest:lint": "jest --config jest-eslint.config.js",
"lint": "eslint --ext .js packages/**",
"lint:staged": "lint-staged",
"test": "jest --coverage",
"start:server": "lerna run start --scope @rest/server --stream",
"start:web": "lerna run start --scope @rest/web-app --stream"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}