forked from este/este
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
{
"name": "este",
"version": "1.0.0",
"private": true,
"license": "MIT",
"engines": {
"node": "10.x.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"ts": "node -r esm -r ts-node/register/transpile-only -r dotenv/config",
"ts:watch": "ts-node-dev --respawn --no-notify --transpileOnly -r esm -r dotenv/config",
"dev:workspaces": "wsrun --exclude-missing dev",
"dev:playground": "prisma playground --port 5000 --server-only",
"dev": "run-p dev:**",
"dev-ios": "yarn workspace @app/native dev:ios",
"dev-android": "yarn workspace @app/native dev:android",
"deps": "rimraf 'yarn.lock' 'node_modules' '**/node_modules' && yarn",
"lint": "eslint '**/*.{ts,tsx}' --cache",
"lint:fix": "yarn lint --fix",
"gen": "wsrun --exclude-missing gen",
"tsc": "tsc",
"build": "wsrun --exclude-missing build",
"test": "run-s lint gen tsc",
"start": "wsrun --exclude-missing start",
"docker:up": "cd prisma && docker-compose up -d && cd ../",
"docker:down": "cd prisma && docker-compose down && cd ../",
"env": "yarn ts scripts/env",
"prisma:generate": "prisma generate --env-file .env",
"prisma:deploy": "prisma deploy --env-file .env",
"prisma:delete": "prisma delete --env-file .env"
},
"dependencies": {
"esm": "^3.2.0",
"wsrun": "^5.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.4.1",
"@typescript-eslint/parser": "^1.4.1",
"babel-plugin-module-resolver": "^3.1.2",
"babel-plugin-relay": "^5.0.0",
"dotenv": "^8.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.2.0",
"eslint-plugin-relay": "^1.0.0",
"graphql": "^14.1.1",
"npm-run-all": "^4.1.5",
"prisma": "^1.26.6",
"rimraf": "^2.6.3",
"ts-node": "^8.0.0",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.2.2"
}
}