-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "jumars-tindahan",
"version": "1.0.0",
"description": "A sample cart app written in Alt.",
"main": "src/index.js",
"scripts": {
"script": "browserify src/index.js -d -t babelify --extension=.jsx > assets/bundle.js",
"watch": "watchify src/index.js -v -d -t babelify --extension=.jsx -o assets/bundle.js",
"style": "lessc --glob less/main.less assets/style.css",
"build": "npm run script || npm run style",
"start": "npm run build && open index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/srph/jumars-tindahan.git"
},
"author": "srph <seraphipod@gmail.com> (https://srph.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/srph/jumars-tindahan/issues"
},
"homepage": "https://github.com/srph/jumars-tindahan",
"dependencies": {
"alt": "^0.15.4",
"classnames": "^1.2.0",
"immutable": "^3.7.2",
"react": "^0.13.1",
"react-router": "^0.13.2",
"upper-case-first": "^1.1.1"
},
"devDependencies": {
"babelify": "^6.0.2",
"browserify": "^9.0.8",
"less": "^2.5.0",
"less-plugin-glob": "^1.1.0",
"watchify": "^3.1.0"
}
}