-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "c-3po-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-raw": "webpack",
"watch": "webpack -w",
"build-raw-p": "NODE_ENV=production HOST=http://c-3po-org.github.io/c-3po-demo webpack -p",
"extract": "WP_EXTRACT=1 webpack",
"merge": "msgmerge i18n/ua.po dist/translations.pot -U",
"build-ua": "WP_LOCALE=ua webpack",
"build-ua-p": "NODE_ENV=production HOST=http://c-3po-org.github.io/c-3po-demo WP_LOCALE=ua webpack -p",
"build": "npm run build-raw && npm run build-ua",
"build-p": "rm -rf docs && npm run build-raw-p && npm run build-ua-p"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-c-3po": "0.5.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"static-site-generator-webpack-plugin": "^3.1.0",
"webpack": "^2.3.2"
},
"dependencies": {
"c-3po": "0.5.8",
"react": "^15.4.1",
"react-dom": "^15.4.1"
}
}