This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
forked from TheoLemoine/WorkShopLouvre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.06 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
{
"name": "workshop-louvre",
"version": "1.0.0",
"description": "Workshop sur la petite galerie du louvre 2019",
"main": "src/app/index.js",
"license": "MIT",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --progress --colors --host 0.0.0.0",
"build": "webpack --config webpack.prod.js",
"deploy": "webpack --config webpack.prod.js && surge ./dist workshop-phryne.surge.sh",
"heroku-postbuild": "webpack --config webpack.prod.js"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@types/immutable": "^3.8.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"file-loader": "^5.0.2",
"image-webpack-loader": "^6.0.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"surge": "^0.21.3",
"svg-inline-loader": "^0.8.0",
"terser-webpack-plugin": "^2.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-copy-plugin": "^0.0.4",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/hammerjs": "^2.0.36",
"autoprefixer": "^9.7.4",
"hammerjs": "^2.0.8",
"postcss-loader": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-scroll-parallax": "^2.2.0",
"react-spring": "^8.0.27",
"schema-utils": "^2.6.1",
"workbox-webpack-plugin": "^4.3.1"
}
}