forked from annawchou/fluxible.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "fluxible.io",
"private": true,
"version": "1.0.1",
"description": "fluxible.io site",
"main": "start.js",
"author": "Seth Bertalotto <[email protected]>",
"scripts": {
"build": "grunt build",
"dev": "grunt dev",
"devtest": "mocha tests/unit --compilers js:babel/register --recursive --reporter spec",
"func": "grunt func",
"lint": "eslint ./*.js ./**/*.js ./**/*.jsx",
"start": "node start",
"test": "istanbul cover --dir ${COVERAGE_DIR:-artifacts} -- _mocha tests/unit/* --compilers js:babel/register --recursive --reporter xunit",
"test-only": "istanbul cover --dir ${COVERAGE_DIR:-artifacts} -- _mocha --recursive --reporter xunit"
},
"precommit": [
"lint",
"devtest"
],
"yahoo": {
"bugzilla": {
"component": "General",
"product": "General"
},
"custodian": {
"email": "[email protected]"
},
"lint": "yhint",
"profile": "td-app",
"secrets": {
"kgp": [
"./secrets/fluxible.alpha.kgp",
"./secrets/fluxible.beta.kgp",
"./secrets/fluxible.prod.kgp"
]
}
},
"dependencies": {
"async": "^1.0.0",
"babel": "^5.1.11",
"body-parser": "^1.6.4",
"classnames": "^2.1.3",
"cookie-parser": "^1.3.3",
"csurf": "^1.6.3",
"debug": "^2.0.0",
"express": "^4.12.3",
"express-state": "^1.2.0",
"fluxible": "^0.5.0",
"fluxible-addons-react": "^0.1.8",
"fluxible-plugin-fetchr": "^0.3.0",
"fluxible-router": "^0.2.0",
"highlight.js": "^8.4.0",
"immutable": "^3.7.2",
"lunr": "^0.5.9",
"marked": "^0.3.3",
"react": "^0.13.0",
"react-i13n": "^0.1.11",
"react-i13n-ga": "^0.1.0",
"semver": "^4.3.6",
"serialize-javascript": "^1.0.0",
"serve-favicon": "^2.1.6",
"superagent": "^1.2.0"
},
"devDependencies": {
"babel-core": "^5.1.11",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.0.0",
"bundle-loader": "^0.5.0",
"chai": "^3.0.0",
"chai-as-promised": "^5.0.0",
"coveralls": "^2.11.2",
"eslint": "^0.24.0",
"grunt": "^0.4.5",
"grunt-atomizer": "^3.0.1",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "~1.0.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "^0.12.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-nodemon": "^0.4.0",
"grunt-protractor-runner": "^2.0.0",
"grunt-protractor-webdriver": "^0.2.0",
"grunt-webpack": "^1.0.8",
"istanbul": "~0.3.2",
"json-loader": "^0.5.1",
"mocha": "^2.0.1",
"mockery": "^1.4.0",
"nodemon": "^1.2.1",
"pre-commit": "^1.0.7",
"protractor": "^2.0.0",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.6.5"
}
}