-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
96 lines (96 loc) · 2.71 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
{
"name": "storyteller",
"version": "0.0.1",
"description": "Executable Specification authoring and running",
"scripts": {
"build-client": "better-npm-run build-client",
"build-client:prod": "better-npm-run build-client:prod",
"watch": "webpack -w",
"harness": "node ./server",
"smoke-test": "karma start smoke-test.conf.js --single-run",
"tdd-smoke": "karma start smoke-test.conf.js --auto-watch",
"tdd-karma": "karma start --auto-watch",
"tdd-mocha": "mocha -w -G",
"test": "yarn run test-mocha && yarn run test-karma && yarn run smoke-test",
"test:prod": "better-npm-run test:prod",
"test-karma": "karma start --single-run",
"test-mocha": "mocha --compilers js:babel-core/register"
},
"betterScripts": {
"build-client": {
"command": "webpack",
"env": {
"NODE_ENV": "development"
}
},
"build-client:prod": {
"command": "webpack",
"env": {
"NODE_ENV": "production"
}
},
"test:prod": {
"command": "npm run test-mocha && npm run test-karma && npm run smoke-test",
"env": {
"NODE_ENV": "production"
}
}
},
"devDependencies": {
"babel": "^6.3.13",
"babel-core": "^6.3.21",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"better-npm-run": "0.0.15",
"body-parser": "^1.14.2",
"chai": "^3.4.1",
"eslint": "^3.8.1",
"express": "^4.13.3",
"fs-extra": "^0.26.3",
"growl": "^1.8.1",
"jsx-loader": "^0.13.2",
"karma": "^1.7.0",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.1",
"karma-growl-reporter": "^0.1.1",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"karma-osx-reporter": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"phantomjs": "^1.9.19",
"react-addons-test-utils": "^0.14.3",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"yargs": "^3.31.0"
},
"dependencies": {
"classnames": "^2.2.5",
"fixed-data-table": "^0.6.3",
"fuse.js": "^2.6.1",
"history": "^1.13.1",
"immutable": "^3.7.6",
"jquery": "^2.1.4",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"mousetrap": "^1.5.3",
"node-uuid": "^1.4.7",
"postal": "^1.0.7",
"react": "^0.14.3",
"react-bootstrap": "^0.28.1",
"react-dom": "^0.14.3",
"react-overlays": "^0.6.1",
"react-redux": "^4.0.6",
"react-router": "^1.0.2",
"redux": "^3.0.5",
"rxjs": "^5.0.3",
"scroll-into-view": "^1.7.5",
"typeahead": "^0.2.1"
}
}