forked from jakwuh/di-diy-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.99 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
{
"name": "timezone-frontend",
"version": "1.0.0",
"description": "Timezone frontend",
"main": "index.js",
"repository": "git@github.com:jakwuh/timezone-frontend.git",
"author": "jakwuh@gmail.com",
"license": "MIT",
"dependencies": {
"@types/express": "^4.0.39",
"@types/jest": "^22.0.0",
"@types/react": "^16.0.27",
"@types/react-dom": "^16.0.3",
"@types/validatorjs": "^3.7.1",
"@types/webpack": "^3.8.1",
"ava": "^0.24.0",
"axios": "^0.17.1",
"babel-core": "7.0.0-beta.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "7.0.0-beta.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-typescript": "^7.0.0-beta.3",
"babel-polyfill": "^7.0.0-beta.3",
"babel-preset-env": "7.0.0-beta.3",
"babel-preset-react": "7.0.0-beta.3",
"cookie-parser": "^1.4.3",
"css-loader": "^0.28.7",
"cypress": "^1.4.1",
"date-fns": "^1.29.0",
"express": "^4.16.2",
"express-http-proxy": "^1.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^22.0.4",
"material-ui": "^0.20.0",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"nodemon": "^1.12.4",
"prop-types": "^15.6.0",
"quantum-router": "https://github.com/vlyahovich/quantum-router/archive/master.tar.gz",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"reflect-metadata": "^0.1.10",
"style-loader": "^0.19.0",
"ts-jest": "^22.0.0",
"ts-loader": "^3.2.0",
"ts-node": "^4.1.0",
"typedi": "https://github.com/jakwuh/typedi/archive/ef803ea879920f0cb81a0f14d16f2c43b59e5bf5.tar.gz",
"typescript": "^2.6.2",
"uploadcare-widget": "^3.2.1",
"validatorjs": "^3.13.6",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {},
"roots": [
"./src",
"./node_modules/typedi/"
]
},
"scripts": {
"watch:server": "npm run build:server -- -w | nodemon ./dist/server/server.js",
"watch:client": "npm run build:client -- -w",
"watch": "npm run watch:client | npm run watch:server",
"build:server": "NODE_ENV=production webpack --config ./build/webpack.server.config.ts",
"build:client": "NODE_ENV=production webpack --config ./build/webpack.client.config.ts",
"build": "npm run build:client && npm run build:server",
"start": "node ./dist/server/server.js",
"test": "jest",
"cypress:open": "cypress open"
}
}