forked from Automattic/happychat-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 7.34 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "happychat-client",
"version": "0.0.1",
"description": "",
"main": "./targets/npm/api.js",
"keywords": [],
"author": "",
"license": "GPL-3.0",
"browserslist": [
"last 2 versions",
"Safari >= 10",
"iOS >= 10",
"not ie <= 10",
"> 1%"
],
"scripts": {
"analyze-bundles": "NODE_ENV=analyze webpack -p --config webpack.standalone.config.js",
"postinstall": "node bin/fix-local-config",
"start": "run-p dev:standalone",
"dev:standalone": "run-p dev:standalone:*",
"dev:standalone:js": "NODE_ENV=development webpack-dev-server --config webpack.standalone.config.js",
"dev:standalone:css": "run-p dev:standalone:css:*",
"dev:standalone:css:main": "node-sass src/form.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/standalone/happychat.css",
"dev:standalone:css:woo": "node-sass src/ui/css/themes/_woo.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/standalone/woo.css",
"dev:standalone:css:jpop": "node-sass src/ui/css/themes/_jpop.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/standalone/jpop.css",
"dev:npm": "run-p dev:npm:*",
"dev:npm:js": "NODE_ENV=development ./node_modules/babel-cli/bin/babel.js --watch src --out-dir targets/npm",
"dev:npm:css": "run-p dev:npm:css:*",
"dev:npm:css:main": "node-sass src/form.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/npm/happychat.css",
"dev:npm:css:woo": "node-sass src/ui/css/themes/_woo.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/npm/woo.css",
"dev:npm:css:jpop": "node-sass src/ui/css/themes/_jpop.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/npm/jpop.css",
"dev:npm:serve-css": "NODE_ENV=development webpack-dev-server --config webpack.npm.config.js",
"dev:wordpress": "run-p dev:wordpress:*",
"dev:wordpress:js": "NODE_ENV=development webpack --config webpack.wordpress.config.js",
"dev:wordpress:css": "run-p dev:wordpress:css:*",
"dev:wordpress:css:main": "node-sass src/form.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/wordpress/happychat.css",
"dev:wordpress:css:woo": "node-sass src/ui/css/themes/_woo.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/wordpress/woo.css",
"dev:wordpress:css:jpop": "node-sass src/ui/css/themes/_jpop.scss | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/wordpress/jpop.css",
"dev:wordpress:serve-css": "npm run dev:wordpress:css && NODE_ENV=development webpack-dev-server --config webpack.wordpress.config.js",
"build": "run-p build:*",
"build:standalone": "run-p build:standalone:*",
"build:standalone:js": "NODE_ENV=production webpack -p --config webpack.standalone.config.js -p",
"build:standalone:css": "run-p build:standalone:css:*",
"build:standalone:css:main": "node-sass src/form.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/standalone/happychat.css",
"build:standalone:css:woo": "node-sass src/ui/css/themes/_woo.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/standalone/woo.css",
"build:standalone:css:jpop": "node-sass src/ui/css/themes/_jpop.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/standalone/jpop.css",
"build:npm": "run-p build:npm:*",
"build:npm:js": "NODE_ENV=production ./node_modules/babel-cli/bin/babel.js src --out-dir targets/npm",
"build:npm:css": "run-p build:npm:css:*",
"build:npm:css:main": "node-sass src/form.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/npm/happychat.css",
"build:npm:css:woo": "node-sass src/ui/css/themes/_woo.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/npm/woo.css",
"build:npm:css:jpop": "node-sass src/ui/css/themes/_jpop.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/npm/jpop.css",
"build:wordpress": "run-p build:wordpress:*",
"build:wordpress:js": "NODE_ENV=production webpack -p --config webpack.wordpress.config.js",
"build:wordpress:css": "run-p build:wordpress:css:*",
"build:wordpress:css:main": "node-sass src/form.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/wordpress/assets/happychat.css",
"build:wordpress:css:woo": "node-sass src/ui/css/themes/_woo.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/wordpress/assets/woo.css",
"build:wordpress:css:jpop": "node-sass src/ui/css/themes/_jpop.scss --output-style compressed | postcss --config postcss.config.json -u autoprefixer -u postcss-custom-properties --no-map -o targets/wordpress/assets/jpop.css",
"test": "jest -c jest.config.json"
},
"devDependencies": {
"autoprefixer": "6.3.5",
"babel-cli": "^6.26.0",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-inline-json": "^1.2.2",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-imports": "^1.5.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-display-name": "6.25.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "1.5.1",
"deep-freeze": "0.0.1",
"enzyme": "3.2.0",
"enzyme-adapter-react-15": "1.0.3",
"enzyme-to-json": "3.3.0",
"eslint": "3.8.1",
"eslint-config-wpcalypso": "1.2.0",
"eslint-plugin-react": "7.1.0",
"eslint-plugin-wpcalypso": "3.4.1",
"events": "1.0.2",
"jest": "21.2.1",
"node-sass": "4.5.3",
"npm-run-all": "4.0.2",
"postcss-cli": "2.5.1",
"postcss-custom-properties": "6.2.0",
"prettier": "github:automattic/calypso-prettier#503d7779",
"react-test-renderer": "15.6.2",
"webpack": "3.10.0",
"webpack-bundle-analyzer": "2.9.1",
"webpack-dev-server": "2.9.4"
},
"dependencies": {
"classnames": "1.1.1",
"create-react-class": "15.6.2",
"gridicons": "3.0.1",
"interpolate-components": "1.1.1",
"lodash": "4.15.0",
"prop-types": "15.5.10",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-pure-render": "1.0.2",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-devtools-extension": "2.13.2",
"socket.io-client": "1.4.5",
"twemoji": "2.3",
"uglifyjs-webpack-plugin": "1.2.3",
"uuid": "2.0.1",
"wpcom-oauth-cors": "1.0.1",
"wpcom-xhr-request": "1.1.1"
}
}