-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.69 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
115
{
"name": "calendar",
"version": "0.0.1",
"description": "Helps to track your team working time with calendars",
"main": "index.js",
"scripts": {
"install-tools": "npm i -g typescript tslint mocha cross-env",
"tsc": "cross-env node_modules/.bin/tsc",
"webpack:prod": "cross-env NODE_ENV=production node_modules/.bin/webpack --config webpack.config.js",
"build": "npm run tsc && npm run webpack:prod",
"dev": "cross-env NODE_ENV=development node server.js",
"start": "cross-env NODE_ENV=production node server.js",
"ldap_dev": "cross-env NODE_ENV=development ts-node src/server/ldap/server.ts",
"ldap_start": "cross-env NODE_ENV=production ts-node src/server/ldap/server.ts",
"lint": "cross-env tslint --config tslint.json src/**/*.ts*",
"test_sqlite": "cross-env DEBUG=sequelize* ts-node node_modules/mocha/bin/_mocha --timeout 30000 -- test/**/*.ts",
"test_pg": "cross-env DEBUG=sequelize* DIALECT=postgres ts-node node_modules/mocha/bin/_mocha --timeout 30000 -- test/**/*.ts",
"test": "npm run test_sqlite && npm run test_pg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edu-xored/calendar.git"
},
"keywords": [
"calendar",
"team",
"tracker"
],
"author": "NSU+Xored",
"license": "ISC",
"bugs": {
"url": "https://github.com/edu-xored/calendar/issues"
},
"homepage": "https://github.com/edu-xored/calendar#readme",
"dependencies": {
"@types/chai": "^3.4.34",
"@types/classnames": "0.0.32",
"@types/express": "^4.0.35",
"@types/lodash": "4.14.61",
"@types/mocha": "^2.2.39",
"@types/node": "7.0.12",
"@types/promise": "^7.1.30",
"@types/query-string": "4.3.1",
"@types/react": "^15.0.9",
"@types/react-dom": "^0.14.23",
"@types/react-modal": "1.6.6",
"@types/react-router": "^3.0.8",
"@types/sequelize": "^4.0.49",
"babel-polyfill": "^6.22.0",
"body-parser": "^1.16.1",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"cors": "2.8.3",
"express": "^4.14.1",
"express-jwt": "^5.1.0",
"helmet": "^3.4.0",
"history": "^4.5.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"jsonwebtoken": "^7.2.1",
"ldapjs": "^1.0.1",
"lodash": "^4.17.4",
"morgan": "^1.8.1",
"object-assign": "^4.1.1",
"password-hash": "^1.2.2",
"pg": "6.1.5",
"pgtools": "^0.2.3",
"promise": "^7.1.1",
"query-string": "^4.3.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-modal": "^1.6.5",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-action": "^1.2.2",
"redux-actions": "^2.0.2",
"redux-saga": "^0.14.7",
"semantic-ui-react": "^0.64.7",
"sequelize": "^3.30.4",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"@types/supertest": "^2.0.0",
"autoprefixer": "^6.7.2",
"awesome-typescript-loader": "^3.1.2",
"babel-core": "^6.22.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",
"chai": "^3.5.0",
"cpx": "^1.5.0",
"cross-env": "4.0.0",
"css-loader": "0.28.0",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"postcss-load-config": "^1.1.0",
"postcss-loader": "^1.2.2",
"postcss-scss": "^0.4.0",
"react-hot-loader": "^3.0.0-beta.6",
"should": "^11.2.0",
"supertest": "^3.0.0",
"ts-node": "^3.0.2",
"tslint": "5.0.0",
"typescript": "^2.2.2",
"webpack": "2.3.2",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "2.18.0",
"webpack-sources": "^0.2.3"
}
}