-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "mastering-react",
"version": "1.0.0",
"description": "Mastering React video course",
"main": "index.js",
"scripts": {
"test": "clear && ./node_modules/mocha/bin/mocha --compilers js:babel/register --reporter dot --recursive",
"build": "browserify src/client.js -t babelify --outfile public/bundle.js && node-sass --output-style compressed styles/main.scss public/main.css",
"flow": "babel src --out-dir build_flow --blacklist flow && flow build_flow"
},
"repository": {
"type": "git",
"url": "https://github.com/hojberg/mastering-react.git"
},
"author": "Simon Hoejberg",
"license": "ISC",
"bugs": {
"url": "https://github.com/hojberg/mastering-react/issues"
},
"homepage": "https://github.com/hojberg/mastering-react",
"dependencies": {
"alt": "^0.17.1",
"d3": "^3.5.6",
"ejs": "^2.3.3",
"express": "^4.13.1",
"immutable": "^3.7.4",
"iso": "^4.1.0",
"juice": "^1.3.4",
"mandrill-api": "^1.0.45",
"moment": "^2.10.3",
"numeral": "^1.5.3",
"react": "^0.14.0-beta1",
"react-dom": "^0.14.0-beta1",
"react-router": "^1.0.0-beta3",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-plugin-flow-comments": "^1.0.4",
"babelify": "^6.1.2",
"expect.js": "^0.3.1",
"jsdom": "^3.1.2",
"mocha": "^2.2.5",
"node-sass": "^3.2.0",
"sinon": "^1.15.4"
}
}