-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "gsoc-convert-xul-to-html",
"version": "1.0.0",
"description": "dev environment for using JSX in react",
"scripts": {
"start": "gulp",
"rbfd": "chmod +x ./removeBabelFromHtml.sh && ./removeBabelFromHtml.sh",
"remove-dist": "rimraf dist",
"fix-lint-errs": "npm run prettier && eslint --fix dist",
"prettier": "prettier --print-width 100 --write \"dist/**/*.js\"",
"transpile-jsx": "babel src -d dist",
"prebuild": "npm run remove-dist",
"build": "npm run transpile-jsx && gulp copy-html-css && npm run rbfd && npm run fix-lint-errs",
"serve": "node server local-dist",
"start:heroku": "node server heroku-dist"
},
"author": "Arshad Khan <[email protected]>",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.18.12",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"prettier": "^1.4.4",
"rimraf": "^2.6.1"
},
"dependencies": {
"express": "^4.15.3",
"path": "^0.12.7"
}
}