This repository was archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.36 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.36 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
{
"name": "picimo",
"version": "0.0.1",
"description": "pictures in motion",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/spearwolf/picimo.git"
},
"engines": {
"node": ">=14.0.0 <15"
},
"scripts": {
"prettier:check": "prettier --check \"{examples,packages}/**/*.{ts,tsx,js,jsx}\"",
"prettier:write": "prettier --write \"{examples,packages}/**/*.{ts,tsx,js,jsx}\"",
"eslint": "eslint \"**/src/*\" --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "eslint \"**/src/*\" --ext .js,.jsx,.ts,.tsx --fix",
"fix": "run-s eslint:fix prettier:write",
"check:types": "lerna run check:types",
"lint:workspaces": "lerna run lint",
"lint": "run-s eslint prettier:check lint:workspaces check:types",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "lerna run test",
"cb": "run-s clean build",
"cbt": "run-s clean build test",
"ci": "rm -fr packages/*/node_modules examples/*/node_modules website/node_modules node_modules yarn-error.log packages/*/yarn-error.log examples/*/yarn-error.log website/*/yarn-error.log && yarn"
},
"author": "Wolfger Schramm <wolfger@spearwolf.de>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spearwolf/picimo/issues"
},
"homepage": "https://github.com/spearwolf/picimo#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-problems": "^5.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"lerna": "^4.0.0",
"node-emoji": "^1.10.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
}
}