-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.27 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "timer_queue",
"version": "0.0.1",
"description": "Simplify consecutive tasks",
"main": "server.js",
"engines": {
"node": "0.10.x",
"npm": "2.1.x"
},
"scripts": {
"start": "./node_modules/nodemon/bin/nodemon.js server/dist/server.js",
"casper": "node_modules/casperjs/bin/casperjs ./spec/casperTest.js",
"debug": "node --harmony --debug-brk node_modules/jest-cli/bin/jest.js --runInBand",
"postinstall": "grunt build && bower install && gulp",
"test": "jest",
"dev-server": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --content-base public/ --port 3001 --hot --progress --colors"
},
"dependencies": {
"MD5": "^1.2.1",
"babel": "^5.0.1",
"babel-core": "~5.6.1",
"babel-loader": "~5.3.1",
"babel-runtime": "~5.6.1",
"body-parser": "^1.6.5",
"bower": "^1.3.12",
"bulk-require": "^0.2.1",
"classnames": "^1.2.0",
"compression": "^1.3.0",
"core-js": "^0.9.17",
"css-loader": "^0.15.1",
"ejs": "^2.3.2",
"express": "4.x",
"extract-text-webpack-plugin": "^0.8.2",
"fastclick": "~1.0.3",
"flux": "^2.0.0",
"grunt": "~0.4.0",
"grunt-cli": "~0.1.8",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^0.11.1",
"grunt-contrib-copy": "^0.6.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-react": "^0.9.0",
"grunt-sass": "^0.17.0",
"grunt-webpack": "^1.0.8",
"grunt-webpack-server": "^0.1.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-watch": "^4.2.4",
"immutable": "^3.6.2",
"isomorphic-fetch": "^2.0.0",
"jade": "^1.7.0",
"load-grunt-tasks": "^0.6.0",
"lodash": "^2.4.1",
"marty": "^0.10.0",
"marty-lib": "^0.10.3",
"mongoose": "~3.8.18",
"nodemon": "^1.2.0",
"react": "^0.13.1",
"react-router": "^1.0.0-beta3",
"react-tools": "^0.13.1",
"sass-loader": "^1.0.2",
"serve-favicon": "^2.1.6",
"style-loader": "^0.12.3",
"webpack": "~1.9.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js"
],
"setupTestFrameworkScriptFile": "<rootDir>/test_utils/setupTestFrameworkScript.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules"
]
},
"repository": {
"type": "git",
"url": "https://github.com/songawee/timer_queue.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/songawee/timer_queue/issues"
},
"homepage": "https://github.com/songawee/timer_queue",
"devDependencies": {
"babel-jest": "^4.0.0",
"casperjs": "^1.1.0-beta3",
"cli-table": "^0.3.1",
"del": "^0.1.3",
"es6-promise": "^2.0.1",
"exports-loader": "^0.6.2",
"file-loader": "^0.8.4",
"imports-loader": "^0.6.3",
"jasmine-core": "^2.3.4",
"jest-cli": "^0.4.0",
"karma": "^0.12.35",
"karma-chrome-launcher": "^0.1.12",
"karma-cli": "0.0.4",
"karma-html-reporter": "^0.2.6",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.5.1",
"node-sass": "^3.2.0",
"phantomjs": "^1.9.17",
"react-hot-loader": "^1.1.5",
"url-loader": "^0.5.6",
"webpack-dev-server": "^1.6.5"
}
}