-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.7 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
{
"name": "themoviedb",
"version": "1.0.0",
"description": "Application for browsing the movie database",
"main": "index.js",
"scripts": {
"test": "karma start karma.config.js",
"test:watch": "karma start karma.config.js --single-run=false",
"build:dev": "webpack --config webpack.web.config.js && webpack --config webpack.server.config.js",
"build:prod": "webpack --config webpack.web.config.js -p && webpack --config webpack.server.config.js -p",
"build:watch": "concurrently \"webpack --config webpack.web.config.js --watch\" \"webpack --config webpack.server.config.js --watch\" \"nodemon ./build/server.js\"",
"build:hot-watch": "concurrently \"webpack-dev-server --config webpack.web.config.js --hot\" \"webpack --config webpack.server.config.js --watch\" \"nodemon ./build/server.js\""
},
"author": "Daniel Kos",
"license": "ISC",
"devDependencies": {
"@types/axios": "0.14.0",
"@types/body-parser": "1.16.5",
"@types/cors": "2.8.1",
"@types/express": "4.0.37",
"@types/isomorphic-fetch": "0.0.34",
"@types/jasmine": "2.6.0",
"@types/jasmine-ajax": "3.1.37",
"@types/react": "16.0.9",
"@types/react-dom": "16.0.0",
"@types/react-router": "4.0.15",
"@types/react-router-dom": "4.0.8",
"@types/react-test-renderer": "15.5.4",
"awesome-typescript-loader": "3.2.3",
"clean-webpack-plugin": "0.1.17",
"concurrently": "3.5.0",
"copy-webpack-plugin": "4.1.0",
"css-loader": "0.28.7",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.4",
"html-webpack-plugin": "2.30.1",
"jasmine": "2.8.0",
"jasmine-ajax": "3.3.1",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-jasmine": "1.1.0",
"karma-jasmine-ajax": "0.1.13",
"karma-jasmine-html-reporter": "0.2.2",
"karma-jasmine-shallow-equal": "0.0.2",
"karma-phantomjs2-launcher": "0.5.0",
"karma-sourcemap-loader": "0.3.7",
"karma-sourcemap-writer": "0.1.2",
"karma-webpack": "2.0.4",
"nodemon": "1.12.1",
"phantomjs-prebuilt": "2.1.15",
"react-hot-loader": "1.3.1",
"react-test-renderer": "16.0.0",
"source-map-loader": "0.2.2",
"style-loader": "0.19.0",
"typescript": "2.5.3",
"url-loader": "0.6.1",
"webpack": "3.6.0",
"webpack-dev-server": "2.9.1",
"webpack-node-externals": "1.6.0"
},
"dependencies": {
"axios": "0.16.2",
"cors": "2.8.4",
"es6-promise": "4.1.1",
"express": "4.16.1",
"isomorphic-fetch": "2.2.1",
"jquery": "3.2.1",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"semantic-ui-css": "2.2.12"
}
}