-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.52 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
{
"name": "macaco-maluco",
"version": "1.0.0",
"description": "macaco maluco",
"scripts": {
"test": "./node_modules/.bin/jsxhint lib/ spec/ && ./node_modules/.bin/jshint lib/ spec/ && ./node_modules/karma/bin/karma start karma.conf.js",
"watch-test": "./node_modules/karma/bin/karma start karma.conf.js --auto-watch --no-single-run",
"build-lib": "./node_modules/.bin/webpack -p",
"build": "npm run build-lib && cp index.html dist/index.html && cp icon-1024.png dist/icon-1024.png && cp favicon.png dist/favicon.png",
"rename-css-bower-dependencies": "find bower_components -name '*.css' | sed -e 'p;s/.css$/.scss/' | xargs -n2 mv",
"dev": "./node_modules/.bin/webpack-dev-server --inline --hot",
"postinstall": "bower install",
"start": "node bin/server.js"
},
"author": "",
"license": "BSD",
"devDependencies": {
"appcache-webpack-plugin": "^0.1.1",
"bower": "^1.7.7",
"css-loader": "^0.9.0",
"es5-shim": "^4.0.5",
"howler": "^1.1.25",
"jasmine": "^2.1.1",
"jasmine-core": "^2.1.3",
"jshint": "^2.5.11",
"jsx-loader": "^0.12.2",
"jsxhint": "^0.9.0",
"karma": "^0.12.28",
"karma-jasmine": "^0.3.2",
"karma-phantomjs-launcher": "^0.1.4",
"karma-webpack": "^1.3.1",
"normalize.scss": "^0.1.0",
"react": "^0.12.2",
"react-router": "^0.11.6",
"sass-loader": "^0.3.1",
"style-loader": "^0.8.2",
"url-loader": "^0.5.5",
"webpack": "^1.4.14",
"webpack-dev-server": "^1.6.6"
},
"dependencies": {
"express": "^4.13.4"
}
}