-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "bruno-arizio",
"version": "1.0.0",
"scripts": {
"start": "concurrently --kill-others \"npm run backend:development\" \"npm run frontend:development\"",
"backend:build": "node app.js",
"backend:development": "nodemon app.js",
"frontend:build": "webpack -p --progress --config webpack.config.build.js",
"frontend:development": "cross-env NODE_ENV=dev webpack-dev-server --progress --config webpack.config.development.js",
"lint": "eslint *.js",
"test": "node -c *.js"
},
"dependencies": {
"body-parser": "~1.18.2",
"cross-env": "^5.2.0",
"debug": "~3.1.0",
"dotenv": "^8.2.0",
"errorhandler": "~1.5.0",
"express": "~4.16.1",
"method-override": "~2.3.10",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"nodemon": "^1.17.3",
"prismic-dom": "~2.0.4",
"prismic-javascript": "~1.4.0",
"pug": "~2.0.0-rc.2",
"request": "~2.83.0",
"ua-parser-js": "^0.7.20"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"autoprefixer": "^9.6.0",
"babel-eslint": "~8.0.1",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.0.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"dat.gui": "^0.7.6",
"eslint": "~4.8.0",
"eslint-config-airbnb-base": "~12.0.1",
"eslint-plugin-import": "~2.7.0",
"fg-loadcss": "^2.1.0",
"file-loader": "^4.0.0",
"fontfaceobserver": "^2.1.0",
"glsl-curl-noise": "^0.0.4",
"glsl-noise": "^0.0.0",
"glslify-loader": "^2.0.0",
"gsap": "^2.1.3",
"html-webpack-plugin": "^3.2.0",
"include-media": "^1.4.9",
"locomotive-scroll": "^3.2.1",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"normalize-wheel": "^1.0.1",
"postcss-loader": "^3.0.0",
"query-string": "^6.8.1",
"raw-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"semver-compare": "^1.0.0",
"stats.js": "^0.17.0",
"three": "mrdoob/three.js#dev",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
}
}