-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "6elementApp",
"version": "0.0.0",
"description": "First sketches of the 6element App",
"main": "app.js",
"scripts": {
"postinstall": "cp git-hooks/pre-commit .git/hooks/pre-commit; chmod a+x .git/hooks/pre-commit",
"watch": "watchify src/main.js -o app.js -d -v",
"build": "browserify src/main.js -o app.js",
"start": "devserver",
"lint": "eslint ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/anthill/6elementApp.git"
},
"author": "ants <[email protected]> (http://ants.builders/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthill/6elementApp/issues"
},
"homepage": "https://github.com/anthill/6elementApp",
"dependencies": {
"bootstrap": "^3.3.5",
"browserify": "^10.2.4",
"flux": "^2.0.3",
"immutable": "^3.7.4",
"keymirror": "^0.1.1",
"moment": "^2.10.3",
"react": "^0.13.3"
},
"devDependencies": {
"es6-shim": "^0.33.0",
"eslint": "^0.24.1",
"grunt-devserver": "^0.6.0",
"watchify": "^3.2.1"
}
}