-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.37 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": "react-demandware-examples",
"version": "1.0.0",
"description": "Using React framework on server-side with Demandware",
"main": "index.js",
"scripts": {
"common": "./node_modules/.bin/babel --plugins transform-react-jsx --watch './react_demo/cartridge/scripts/jsx/common' --out-dir './react_demo/cartridge/static/default/react/components'",
"server": "./node_modules/.bin/babel --plugins transform-react-jsx --watch './react_demo/cartridge/scripts/jsx/server' --out-dir './react_demo/cartridge/scripts/react-js-views'",
"transform": "./node_modules/.bin/concurrently --kill-others 'npm run common' 'npm run server'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ranveer5289/react-demandware-examples.git"
},
"author": "Ranveer Raghuwanshi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ranveer5289/react-demandware-examples/issues"
},
"homepage": "https://github.com/ranveer5289/react-demandware-examples#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"browserify": "^13.1.1",
"concurrently": "^3.1.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-watch": "^1.0.0",
"load-grunt-tasks": "^3.5.2"
}
}