-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 KB
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
{
"name": "altermind",
"version": "1.0.0",
"description": "Altermind Project",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --open --config webpack.dev.js",
"prestart": "npm run clean",
"build": "webpack --config webpack.prod.js",
"prebuild": "npm run clean",
"clean": "rimraf build generated"
},
"author": "",
"license": "MIT",
"browserslist": [
"> 1%",
"last 2 versions",
"IE 10"
],
"dependencies": {
"browser-sync": "^2.26.7",
"gsap": "^2.1.3",
"hammerjs": "^2.0.8",
"locomotive-scroll": "^3.5.4",
"three": "^0.113.2",
"webpack-merge": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"browser-sync-webpack-plugin": "^2.2.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"custom-event-polyfill": "^1.0.7",
"dat.gui": "^0.7.7",
"eslint": "^6.2.1",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^4.2.0",
"handlebars": "^4.7.6",
"handlebars-layouts": "^3.1.4",
"handlebars-webpack-plugin": "https://github.com/mitchheddles/handlebars-webpack-plugin#478592b",
"html-webpack-plugin": "^3.2.0",
"ignore-loader": "^0.1.2",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"promise-polyfill": "^8.1.3",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^7.3.1",
"stats-js": "^1.0.1",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-glsl-loader": "^1.0.1"
}
}