-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.85 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
{
"name": "tinychat",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cd client && export NODE_ENV='test' && mocha --compilers js:babel-register --recursive && unset NODE_ENV",
"start:sockets": "node backend/SocketService/socketService.js",
"start:client": "open -a \"Google Chrome\" \"http://localhost:8080\"",
"start:apiServer": "cd ./backend/RESTService/ && ./gradlew bootRun",
"start:socketsInNewTab": "osascript -e 'tell application \"Terminal\" to activate' -e 'tell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down' -e 'tell application \"Terminal\" to do script \"npm run start:sockets\" in selected tab of the front window'",
"start": "cd client && webpack && cd .. && npm run start:socketsInNewTab && npm run start:apiServer",
"test:watch": "npm test -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.8.0",
"jsdom-global": "^2.1.0",
"mocha": "^3.0.2",
"nock": "^8.1.0",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.2",
"react-bootstrap": "^0.30.2",
"react-dom": "^15.3.0",
"react-tap-event-plugin": "^1.0.0",
"sinon": "^1.17.6",
"socket.io": "^1.5.0"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.11.6",
"eslint": "^3.2.2",
"eslint-config-airbnb": "10.0.0",
"eslint-loader": "1.5.0",
"eslint-plugin-import": "1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "6.0.0",
"webpack": "^1.13.1"
}
}