-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.07 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
{
"name": "resumerge",
"description": "",
"author": "3846masa <[email protected]>",
"license": "MIT",
"version": "0.0.0",
"main": "server/dist/index.js",
"bin": "server/dist/index.js",
"scripts": {
"build": "npm-run-all -s build:client build:server build:pkg",
"build:client": "webpack --config ./config/webpack.config.js",
"build:pkg": "pkg package.json -t node8-macos-x64,node8-linux-x64,node8-win-x64 --out-dir ./binaries",
"build:server": "tsc --project ./config/tsconfig.server.json",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "cross-env NODE_ENV=\"development\" npm-run-all -p watch:*",
"watch:client": "webpack-dev-server --config ./config/webpack.config.js",
"watch:server": "nodemon ./server/src/index.ts"
},
"dependencies": {
"aphrodite": "^1.2.5",
"axios": "^0.16.2",
"core-decorators": "^0.20.0",
"csv-parse": "^1.2.4",
"fs-extra": "^4.0.2",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"moment": "^2.19.1",
"opn": "^5.1.0",
"pdfjs-dist": "^1.9.630",
"pdfmake": "^0.1.33",
"react": "^16.0.0",
"react-day-picker": "^6.2.1",
"react-dom": "^16.0.0",
"react-dropzone": "^4.2.0",
"react-hot-loader": "^3.0.0",
"react-redux": "^5.0.6",
"react-select": "1.0.0-rc.10",
"react-transition-group": "^2.2.1",
"react-with-styles": "^2.2.0",
"react-with-styles-interface-aphrodite": "^3.1.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"tmp": "^0.0.33",
"which": "^1.3.0"
},
"devDependencies": {
"@types/aphrodite": "^0.5.6",
"@types/csv-parse": "^1.1.10",
"@types/fs-extra": "^4.0.2",
"@types/koa": "^2.0.39",
"@types/koa-bodyparser": "^3.0.25",
"@types/koa-router": "^7.0.23",
"@types/koa-static": "^3.0.1",
"@types/node": "^8.0.33",
"@types/opn": "^3.0.28",
"@types/pdfjs-dist": "^0.1.0",
"@types/react": "^16.0.10",
"@types/react-dom": "^16.0.1",
"@types/react-dropzone": "^4.1.0",
"@types/react-hot-loader": "^3.0.4",
"@types/react-redux": "^5.0.10",
"@types/react-select": "^1.0.59",
"@types/react-transition-group": "^2.0.6",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/tmp": "^0.0.33",
"@types/webpack-env": "^1.13.1",
"awesome-typescript-loader": "^3.2.3",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"pkg": "^4.2.5",
"script-ext-html-webpack-plugin": "^1.8.5",
"style-loader": "^0.19.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.3",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"keywords": [],
"nodemonConfig": {
"watch": ["server/src"],
"ext": "ts",
"ignore": ["server/src/**/*.spec.ts"],
"exec": "ts-node --project ./config/tsconfig.server.json"
},
"pkg": {
"scripts": "server/dist/**/*.js",
"assets": ["client/dist/**/*", "fonts/**/*", "node_modules/**/*.trie", "node_modules/pdfkit/**/*.afm"]
}
}