-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
63
64
65
66
67
68
69
70
{
"name": "remeal",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run build",
"build": "npm run build:client && npm run build:plugin && npm run build:server",
"build:plugin": "rimraf plugin && parcel build src/plugins/remeal.js -d plugin",
"build:client": "rimraf public && parcel build src/control/index.html -d public",
"build:server": "rimraf server && parcel build src/server/index.js -d server --target=node",
"watch:plugin": "parcel watch src/plugins/remeal.js -d plugin",
"watch:client": "parcel watch src/control/index.html -d public",
"watch:server": "parcel watch src/server/index.js -d server --target=node",
"start": "node server/index.js"
},
"author": "Dmitry Korolev<[email protected]>",
"license": "MIT",
"dependencies": {
"emotion": "^9.1.3",
"express": "^4.16.3",
"fbjs": "^1.0.0",
"mobile-drag-drop": "^2.3.0-rc.1",
"preact": "^8.2.9",
"preact-emotion": "^9.2.12",
"prop-types": "^15.6.1",
"redux": "^4.0.0",
"reselect": "^4.0.0",
"rxjs": "^5.5.10",
"slim-js": "^4.0.1",
"socket.io": "^2.1.0",
"socket.io-client": "^2.1.0",
"stapp": "^1.3.0",
"yargs": "^13.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"babel-plugin-emotion": "^10.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-imports": "^1.5.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-prettier-standard": "^2.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.8.0",
"eslint-plugin-standard": "^4.0.0",
"fbjs": "^0.8.17",
"parcel-bundler": "^1.8.1",
"postcss": "^7.0.0",
"postcss-cssnext": "^3.1.0",
"prettier": "^1.12.1",
"rimraf": "^2.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"greenkeeper": {
"ignore": [
"rxjs"
]
}
}