-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.55 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
{
"name": "remoto",
"version": "0.0.12",
"description": "A new way for get your next remote job",
"private": true,
"repository": {
"url": "https://github.com/sohobase/jobs-service",
"type": "git"
},
"scripts": {
"start": "NODE_ENV=production pm2 start ecosystem.json",
"dev": "NODE_ENV=development npm run server",
"server": "node src/server",
"test": "jest -i",
"test:watch": "jest --watch",
"lint:css": "stylelint ./src/**/*.css",
"lint:js": "eslint --ignore-path .gitignore ./**/*.js"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "3.14.0",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.1.0",
"morgan": "1.8.0",
"postcss": "^5.2.13",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.0",
"postcss-reporter": "^3.0.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.4.2",
"style-loader": "^0.13.1",
"stylelint": "^7.8.0",
"stylelint-config-standard": "^16.0.0",
"url-loader": "0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.16.1"
},
"dependencies": {
"babel-jest": "^18.0.0",
"babel-register": "^6.23.0",
"body-parser": "^1.16.1",
"chrono-node": "^1.2.5",
"classnames": "^2.2.5",
"cron": "^1.2.1",
"css-modules-require-hook": "^4.0.5",
"dotenv": "^4.0.0",
"ejs": "^2.5.5",
"express": "4.14.1",
"express-session": "^1.15.1",
"express-status-monitor": "0.1.9",
"lowdb": "^0.15.5",
"moment": "^2.17.1",
"mongoose": "^4.8.4",
"pm2": "^2.4.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-markdown": "^2.4.4",
"react-router": "^3.0.2",
"react-stripe-checkout": "^2.2.5",
"stripe": "^4.15.0",
"telebot": "^1.0.7",
"to-markdown": "^3.0.3",
"uuid": "^3.0.1",
"x-ray": "^2.3.1"
},
"jest": {
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"<rootDir>/(src|node_modules)/"
]
}
}