This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "toonin",
"version": "1.0.0",
"description": "Toonin to each others' experiences!",
"private": true,
"image": "heroku/nodejs",
"scripts": {
"start": "yarn run server",
"setup:app": "yarn --cwd packages/app",
"setup:server": "yarn --cwd packages/server",
"setup": "yarn run setup:server; yarn run setup:app",
"server": "yarn --cwd packages/server start",
"server:bg": "yarn --cwd packages/server start &",
"app": "yarn --cwd packages/app start",
"rebuild": "cd packages/app && yarn add node-sass --force",
"build": "cd packages/app && yarn run build",
"dev": "yarn run server:bg; yarn run app"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/grey-software/toonin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/grey-software/toonin/issues"
},
"homepage": "https://github.com/grey-software/toonin#readme"
}