-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "storefront-example",
"version": "0.1.0",
"description": "Example Storefront flux/react application.",
"main": "app/main.js",
"scripts": {
"build": "NODE_ENV=production browserify app/main.jsx -o ./bundle.js --standalone App",
"watch": "watchify app/main.jsx -o ./bundle.js --standalone App",
"dev": "npm run build; http-server & npm run watch",
"publish": "cp index.html ../storefront-example-pages/ && cp bundle.js ../storefront-example-pages/ && cp styles.css ../storefront-example-pages/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"storefront",
"react",
"flux",
"example"
],
"author": "Matt McCray <[email protected]>",
"license": "MIT",
"dependencies": {
"storefront": "^0.8.0",
"reactify": "^0.17.1",
"browserify": "^6.3.2",
"envify": "^3.2.0",
"react": "^0.12.1",
"watchify": "^2.1.1",
"elucidata-type": "^1.1.1",
"react-prefixr": "0.0.3",
"http-server": "^0.7.3",
"tv4": "^1.1.4",
"tv4-formats": "^0.5.1"
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true,
"everything": true
}
],
[
"envify",
{
"NODE_ENV": "production"
}
]
]
}
}