This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.11 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
{
"name": "anonym.club",
"version": "0.0.1",
"description": "anonym.club",
"scripts": {
"lint": "eslint .",
"dev": "NODE_ENV=development babel-node server",
"prod": "npm run build; cd build; HTTP_PORT=8080 npm run local-prod",
"dock": "npm run build; sh build_container.sh; sh run_local.sh",
"build": "npm run lint; bash build.sh; babel-node build.js",
"test": "NODE_ENV=testing npm run test-server; npm run test-common; npm run test-client",
"test-server": "mocha --compilers js:babel/register 'server/**/*.test.js'",
"test-common": "mocha --compilers js:babel/register 'common/**/*.test.js'",
"test-client": "mocha --compilers js:babel/register 'client/**/*.test.js'",
"test-server-actions": "supervisor -q -n exit -x mocha -- -b --compilers js:babel/register 'server/actions.test.js'",
"validate": "npm ls"
},
"dependencies": {
"babel": "5.8.23",
"babel-core": "5.8.25",
"babel-plugin-node-env-inline": "1.0.1",
"connect-history-api-fallback": "1.1.0",
"debug": "2.2.0",
"express": "4.13.3",
"get-urls": "5.0.0",
"history": "1.12.3",
"lodash": "3.10.1",
"marked": "0.3.5",
"mongoose": "4.1.9",
"open-graph-scraper": "1.0.1",
"react": "0.13.3",
"react-router": "1.0.0-rc3",
"redux-router": "1.0.0-beta3",
"redux-thunk": "1.0.0",
"socket.io": "1.3.6",
"uuid": "2.0.1"
},
"devDependencies": {
"autoprefixer-loader": "3.1.0",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.2",
"chai": "3.2.0",
"css-loader": "0.18.0",
"eslint": "1.4.1",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "3.3.2",
"extract-text-webpack-plugin": "0.8.2",
"html-webpack-plugin": "1.6.1",
"mocha": "2.3.2",
"node-sass": "3.3.3",
"pre-commit": "1.1.1",
"react-hot-loader": "1.3.0",
"react-redux": "2.1.2",
"redux": "3.0.0",
"redux-logger": "1.0.8",
"sass-loader": "2.0.1",
"socket.io-client": "1.3.6",
"style-loader": "0.12.4",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.0"
},
"author": "anonym club star team",
"pre-commit": [
"lint"
]
}