-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 3.13 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": "viking-garage-frontend",
"version": "0.5.5",
"description": "VIKING GARAGE frontend",
"main": "index.js",
"scripts": {
"postinstall": "npm run fix-material && npm run build:ssr && npm run build:app",
"build:app": "webpack --optimize-minimize --config webpack/webpack.config.prod-app.js --progress --colors",
"build:ssr": "webpack --optimize-minimize --config webpack/webpack.config.prod-ssr.js --progress --colors",
"test": "mocha -r ts-node/register -r test-setup.js src/ts/**/*.spec.tsx src/ts/**/**/*.spec.tsx",
"lint": "tslint ./src/ts/*.tsx ./src/ts/**/*.tsx ./src/ts/**/**/*.tsx",
"start": "node ./server",
"fix-material": "./scripts/sed-autocomplete.sh || ./scripts/sed-autocomplete-nix.sh"
},
"engines": {
"node": "8.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michalmikolajczyk/viking-garage-frontend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/michalmikolajczyk/viking-garage-frontend/issues"
},
"homepage": "https://github.com/michalmikolajczyk/viking-garage-frontend#readme",
"dependencies": {
"@types/chai": "^3.4.34",
"@types/enzyme": "^2.7.4",
"@types/jsdom": "^2.0.29",
"@types/material-ui": "^0.17.16",
"@types/mocha": "^2.2.39",
"@types/react": "^15.0.22",
"@types/react-addons-test-utils": "^0.14.17",
"@types/react-dom": "^0.14.23",
"@types/react-router": "^3.0.1",
"@types/sinon": "^1.16.34",
"@types/sinon-chai": "^2.7.27",
"@types/sinon-stub-promise": "^1.0.27",
"@types/whatwg-fetch": "0.0.33",
"accesscontrol": "^1.5.3",
"accounting": "^0.4.1",
"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",
"css-loader": "^0.26.1",
"debug": "^2.6.1",
"dotenv": "^4.0.0",
"enzyme": "^2.7.1",
"express-handlebars": "^3.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"formsy-material-ui": "0.6.0",
"formsy-react": "^0.19.2",
"geolib": "^2.0.22",
"js-cookie": "^2.2.0",
"jsdom": "^9.10.0",
"material-ui": "^0.19.4",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"money": "^0.2.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.6",
"promise-polyfill": "^6.0.2",
"react": "^15.5.4",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.5.4",
"react-dropzone": "^3.12.2",
"react-ga": "^2.3.5",
"react-hot-loader": "^3.0.0-beta.2",
"react-router": "^3.0.2",
"react-stripe-elements-universal": "^1.2.0-3",
"react-tap-event-plugin": "^2.0.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sass-loader": "^4.1.1",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"sinon-stub-promise": "^4.0.0",
"style-loader": "^0.13.1",
"ts-loader": "^2.0.0",
"ts-node": "^3.1.0",
"tslint": "^4.5.1",
"tslint-config-airbnb": "^1.0.0",
"typescript": "2.3.4",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-notifier": "^1.5.0",
"whatwg-fetch": "^2.0.3"
}
}