-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "stars-hover-effect",
"author": "Jacco Goris",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server --mode development --open --host 0.0.0.0",
"build": "webpack --mode production",
"docs": "documentation build src/** -f html -o dist/docs",
"docs:watch": "documentation serve --watch src/index.js --content-base src/",
"release": "npm run build && npm run docs"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"babel-loader": "^8.1.0",
"base64-inline-loader": "^1.1.1",
"documentation": "^12.1.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^3.1.0",
"source-map-loader": "^1.1.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"three": "^0.120.1"
},
"repository": "",
"description": "Stars that you can hover over",
"license": "ISC"
}