-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.8 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
{
"name": "portfolio",
"version": "1.0.2",
"description": "portfolio",
"repository": {
"type": "git",
"url": "https://github.com/GuenoleK/portfolio.git"
},
"scripts": {
"start": "webpack-dev-server --config webpack-dev-server.config.js --progress --inline --colors",
"build": "webpack --config webpack-production.config.js --progress --colors",
"update:packages": "node wipe-dependencies.js && rm -rf node_modules && npm update --save-dev && npm update --save",
"reaload:packages": "rm -rf node_modules && npm install"
},
"betterScripts": {
"db-init": {
"command": "cd build && node ./api/database/init.js",
"env": {
"DB_ENV": "dev"
}
},
"db-insert": {
"command": "cd build && node ./api/database/insertions.js",
"env": {
"DB_ENV": "dev"
}
},
"db-init-prod": {
"command": "cd build && node ./api/database/init.js",
"env": {
"DB_ENV": "prod"
}
},
"start-api": {
"command": "cd build && node ./api/index.js",
"env": {
"DB_ENV": "prod"
}
},
"start-api-watch": {
"command": "cd build && nodemon ./api/index.js",
"env": {
"DB_ENV": "prod"
}
}
},
"private": true,
"devDependencies": {
"@types/react": "15.0.1",
"autoprefixer-loader": "^3.2.0",
"awesome-typescript-loader": "3.1.3",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"better-npm-run": "0.0.14",
"body-parser": "^1.17.1",
"css-loader": "^0.26.4",
"extract-text-webpack-plugin": "^2.1.0",
"faker": "^4.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.1",
"moment": "^2.17.1",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.1",
"react-material-timeline": "^3.0.1",
"react-vertical-timeline-component": "^2.1.2",
"sass-loader": "^6.0.3",
"source-map-loader": "0.2.1",
"style-loader": "^0.13.2",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"@material-ui/core": "^1.2.3",
"@material-ui/icons": "^1.1.0",
"cors": "^2.8.1",
"es6-promise": "^4.1.0",
"express": "^4.15.2",
"i18next": "^7.1.1",
"lodash": "^4.17.4",
"material-design-lite": "^1.3.0",
"material-ui": "^1.0.0-beta.9",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-parallax": "^1.4.1",
"react-router": "^3.0.2",
"react-tap-event": "^2.0.1",
"react-tap-event-plugin": "^3.0.3",
"typescript": "2.3.4",
"uikit": "^2.27.3"
}
}