-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.55 KB
/
package.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.55 KB
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
{
"name": "ticketoffice-app",
"version": "0.1.1",
"description": "Ticket Office - Demo for Commerce API",
"scripts": {
"slate": "rm -rf node_modules && npm install",
"clean": "rm -rf dist",
"start": "node src/server/index.js --progress --colors --profile",
"start-prod": "NODE_ENV=production npm start",
"build": "npm run clean && NODE_ENV=production webpack -p --progress --colors --profile",
"test": "NODE_ENV=test mocha --reporter nyan --compilers js:babel-core/register --recursive",
"test-spec": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"lint": "./node_modules/.bin/eslint src || true"
},
"repository": {
"type": "git",
"url": "http://git.tm.tmcs/Wayne.Sin/ticketoffice-app.git"
},
"license": "MIT",
"dependencies": {
"axios": "0.15.2",
"body-parser": "1.15.2",
"classnames": "2.2.5",
"cookie-parser": "1.4.3",
"cors": "2.8.1",
"dateformat": "1.0.12",
"duration": "0.2.0",
"express": "4.14.0",
"express-session": "1.14.1",
"form-serialize": "0.7.1",
"history": "4.3.0",
"install": "0.8.1",
"lodash": "4.16.4",
"npm": "3.10.8",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-onclickoutside": "5.7.1",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"react-router-redux": "4.0.6",
"redux": "3.6.0",
"redux-thunk": "2.1.0",
"socket.io": "1.5.0",
"tm-api": "0.6.1",
"tm-nucleus": "0.31.0",
"url-search-params": "0.6.1"
},
"devDependencies": {
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-runtime": "6.11.6",
"chai": "3.5.0",
"chai-spies": "0.7.1",
"css-loader": "0.25.0",
"eslint": "3.8.1",
"eslint-plugin-react": "6.4.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"jsdom-no-contextify": "3.1.0",
"json-loader": "0.5.4",
"merge": "1.2.0",
"mocha": "3.1.2",
"react-addons-test-utils": "15.3.2",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.3.2",
"redux-logger": "2.7.0",
"sinon": "1.17.6",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.0"
}
}