generated from codrops/CodropsTemplate
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "frontend-boilerplate",
"version": "0.0.1",
"description": "Boilerplate skeleton for writing frontend app in rollup, typescript & express",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"watch": "rollup --watch --c",
"build": "NODE_ENV=production rollup --c",
"serve": "http-server -p 4000",
"start": "run-p build serve",
"start:local": "run-p watch serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnikoloff/frontend-boilerplate.git"
},
"author": "Georgi Nikolov",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnikoloff/frontend-boilerplate/issues"
},
"homepage": "https://github.com/gnikoloff/frontend-boilerplate#readme",
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-strip": "^2.0.1",
"compression": "^1.7.4",
"dat.gui": "^0.7.7",
"express": "^4.17.1",
"glsl-noise": "0.0.0",
"hex-rgb": "^5.0.0",
"http-server": "^0.12.3",
"rgb-hex": "^4.0.0",
"rollup": "^2.51.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-import-css": "^2.0.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-uglify": "^6.0.4",
"three": "^0.130.1",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"eslint": "^7.28.0",
"npm-run-all": "^4.1.5"
}
}