-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.64 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
{
"name": "@loops-ar/loops",
"version": "1.0.3",
"private": true,
"description": "loops js libraries",
"scripts": {
"ui:start": "yarn workspace @loops-ar/ui start",
"ui:build": "yarn workspace @loops-ar/ui build",
"hooks:start": "yarn workspace @loops-ar/hooks start",
"hooks:build": "yarn workspace @loops-ar/hooks build",
"docs:start": "cd packages/docs && yarn start",
"docs:build": "yarn workspace @loops-ar/docs build",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"start": "yarn hooks:build && yarn ui:build && npm-run-all -r --parallel ui:start hooks:start docs:start",
"build": "yarn workspaces run build",
"upload": "mv ./public/index.html ./public/200.html && surge --domain=\"https://loopsar-docs.surge.sh\" ./public",
"generate": "yo @loops-ar/loops --force"
},
"files": [],
"author": "Pablo Androetto <[email protected]> (https://github.com/androettop/)",
"contributors": [
"Pablo Androetto <[email protected]> (https://github.com/androettop/)"
],
"workspaces": {
"packages": [
"packages/hooks",
"packages/ui",
"packages/docs",
"packages/generator-loops"
]
},
"license": "ISC",
"devDependencies": {
"@loops-ar/generator-loops": "^1.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"surge": "^0.23.1",
"yo": "^4.3.0"
}
}