-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-flux-puzzle",
"version": "0.0.1",
"description": "A puzzle game built with React + Rx.js + Immutable.js",
"scripts": {
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --recursive",
"build:css": "node-sass --output-style compressed src/assets/sass/main.sass > dist/assets/css/main.css",
"build:js": "browserify src/assets/js/index.js -t [ babelify ] | uglifyjs > dist/assets/js/index.js",
"server": "./node_modules/node-static/bin/cli.js -p 3000 .",
"watch:css": "watchy -w src/assets/sass/ -- npm run build:css",
"watch:js": "watchify src/assets/js/index.js -o dist/assets/js/index.js -v",
"watch:test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"postcss": "postcss -c .postcss.json",
"start": "npm run watch:css & npm run watch:js & npm run server",
"build": "npm run build:js && npm run build:css && npm run postcss",
"deploy": "npm run build && ./pre-deploy.sh && ./deploy.sh -e"
},
"author": "Weslley Araujo <weslleyaraujo19@gmail.com>",
"license": "MIT",
"keywords": [
"React",
"Immutable",
"Rx"
],
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.2",
"babel-istanbul": "^0.5.8",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.4",
"babel-preset-stage-0": "^6.1.2",
"babelify": "^7.2.0",
"browserify": "^11.1.0",
"chai": "^3.4.0",
"classnames": "^2.1.5",
"coveralls": "^2.11.4",
"immutable": "^3.7.5",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0",
"moment": "^2.10.6",
"node-sass": "^3.4.1",
"node-static": "^0.7.7",
"postcss-cli": "^2.3.2",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"replace": "^0.3.0",
"rx": "^4.0.6",
"sinon": "^1.17.2",
"timer-stopwatch": "^0.1.6",
"uglify-js": "^2.5.0",
"underscore": "^1.8.3",
"watchify": "^3.4.0",
"watchy": "^0.6.5"
}
}