-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.37 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
{
"name": "three-project-starter",
"version": "0.0.1",
"description": "Simple starter for three.js projects",
"main": "index.html",
"scripts": {
"test": "test",
"build": "rm -rf dist/ && NODE_ENV='production' webpack --config ./webpack/webpack-full.config.js",
"build-simple": "rm -rf dist/ && NODE_ENV='production' webpack --config ./webpack/webpack-simple.config.js",
"start": "NODE_ENV='development' webpack-dev-server --config ./webpack/webpack-full.config.js",
"lint": "eslint src"
},
"author": "Eli Fitch",
"license": "MIT",
"dependencies": {
"gsap": "^1.20.3",
"three": "0.97.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"glslify-loader": "^1.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.4",
"raw-loader": "^0.5.1",
"style-loader": "^0.23.1",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}