-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.71 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "remote",
"version": "2.1.0",
"description": "Remote for browsers",
"main": "index.js",
"scripts": {
"postinstall": " npm run client:build:prod ",
"prestart": "npm run server:build:prod",
"start": "npm run server:start",
"__test": "----------- TEST -----------",
"test": "echo \"Error: no test specified\" && exit 1",
"__build": "----------- BUILD -----------",
"build:all": "npm run extension:build && npm run server:build && npm run client:build",
"build:all:prod": "npm run extension:build:prod && npm run server:build:prod && npm run client:build:prod",
"extension:build": "rm -rf ./build/extensions && webpack --config meta/extensions.webpack.config.js --display-error-details",
"extension:build:prod": "npm run extension:build -- -p",
"extension:build:watch": "npm run extension:build -- --watch",
"server:build": "rm -rf ./build/server && webpack --config meta/server.webpack.config.js --display-error-details",
"server:build:prod": "npm run server:build -- -p",
"server:build:watch": "npm run server:build -- --watch",
"client:build": "rm -rf ./build/client && webpack --config meta/client.webpack.config.js --display-error-details",
"client:build:prod": "npm run client:build -- -p",
"client:build:watch": "npm run client:build -- --watch",
"__server": "----------- SERVER -----------",
"server:start": "node build/server/index.js",
"__validation": "----------- VALIDATION -----------",
"typings": "typings install",
"__versions": "----------- VERSIONS -----------",
"version:patch": "release-it patch",
"version:minor": "release-it minor",
"version:major": "release-it major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wdelmas/remote.git"
},
"author": "WDS",
"license": "MIT",
"bugs": {
"url": "https://github.com/wdelmas/remote/issues"
},
"homepage": "https://github.com/wdelmas/remote#readme",
"devDependencies": {
"release-it": "^3.0.2"
},
"dependencies": {
"@types/chrome": "0.0.49",
"@types/classnames": "^2.2.3",
"@types/react": "^16.0.8",
"@types/react-dom": "^16.0.0",
"@types/react-redux": "^5.0.6",
"@types/react-router": "^3.0.0",
"@types/react-router-redux": "^4.0.8",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.30",
"autoprefixer": "^7.1.5",
"awesome-typescript-loader": "^3.2.3",
"babel-cli": "~6.11.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-native-modules": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "~6.11.0",
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^2.1.2",
"force-case-sensitivity-webpack-plugin": "^0.2.1",
"image-webpack-loader": "^3.4.2",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"qrious": "^4.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.8",
"react-toolbox": "^2.0.0-beta.12",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.6",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"source-map-loader": "^0.2.2",
"style-loader": "^0.19.0",
"svg-react-loader": "^0.4.5",
"ts-loader": "^2.0.3",
"typescript": "^2.5.3",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}