-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.32 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
{
"name": "paintlets",
"version": "1.0.0",
"description": "A fun little gallery of paint worklets!",
"main": "dist/server/index.js",
"scripts": {
"clean": "rm -rf ./dist",
"copy:worklets": "cp -Rfv ./src/client/worklets ./dist/client/worklets",
"build": "npm run clean && NODE_ENV=production npx webpack --progress && npm run build:worklets",
"build:dev": "npm run clean && NODE_ENV=development npx webpack --progress && npm run copy:worklets",
"build:stats": "NODE_ENV=production npx webpack --progress --profile --json > compilation-stats.json",
"build:worklets": "npm run copy:worklets && find ./dist/client/worklets -type f -name '*.js' | xargs -P 16 -I {} npx terser -c -m -o {} --ecma 8 {}",
"start": "npm run build && npm run server",
"server": "node ./dist/server/index.js",
"preview": "npm run build:dev && npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malchata/paintlets.git"
},
"keywords": [
"css",
"houdini",
"paint",
"worklets"
],
"author": "Jeremy L. Wagner <jeremy.l.wagner@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/malchata/paintlets/issues"
},
"homepage": "https://github.com/malchata/paintlets#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-modules": "^0.1.4",
"@babel/preset-react": "^7.12.7",
"@babel/register": "^7.12.1",
"assets-webpack-plugin": "^6.1.2",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"mini-css-extract-plugin": "^1.3.2",
"null-loader": "^4.0.1",
"postcss-loader": "^4.1.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"preact": "^10.5.7",
"preact-render-to-string": "^5.1.12"
},
"peerDependencies": {
"postcss": "^8.2.0"
}
}