-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.15 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
{
"private": true,
"webpackConfigJaid": "cli",
"version": "1.0.0",
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"dependencies": {
"@absolunet/fsp": "^1.6.2",
"@absolunet/fss": "^1.6.2",
"@jimp/custom": "^0.16.1",
"@jimp/plugins": "^0.16.1",
"@jimp/png": "^0.16.1",
"@jimp/utils": "^0.16.1",
"chokidar": "^3.4.2",
"debug": "^4.1.1",
"eventemitter3": "^4.0.7",
"globby": "^11.0.1",
"p-cancelable": "^2.0.0",
"platform-folders": "^0.5.1",
"sharp": "0.26.0",
"socket.io": "^2.3.0",
"winston": "^3.3.3",
"yargs": "^15.4.1"
},
"devDependencies": {
"acorn": "^8.0.1",
"ajv": "^6.12.4",
"babel-jest": "^26.3.0",
"babel-preset-jaid": "^8.1.1",
"browserslist-config-jaid-node": "^3.0.0",
"caniuse-lite": "^1.0.30001120",
"eslint": "^7.7.0",
"eslint-config-jaid": "^1.49.0",
"jest": "^26.4.2",
"opn-cli": "^5.0.0",
"rimraf": "^3.0.2",
"tsconfig-jaid": "^2.0.1",
"webpack-config-jaid": "^11.12.1"
},
"scripts": {
"clean": "rimraf dist/",
"start": "npm run build:dev && node --inspect=9229 $(npx find-by-extension-cli js --fullPath --cwd dist/package/development)",
"babel:prod": "rimraf dist/transpiled/production && NODE_ENV=production babel --out-dir dist/transpiled/production --source-maps true src",
"babel:dev": "rimraf dist/transpiled/development && NODE_ENV=development babel --out-dir dist/transpiled/development src",
"babel:test": "rimraf dist/transpiled/test && NODE_ENV=test babel --out-dir dist/transpiled/test src",
"build:prod": "NODE_ENV=production webpack",
"build:dev": "NODE_ENV=development webpack",
"test": "npm run build:prod && NODE_ENV=production MAIN=dist/package/production jest --runInBand",
"test:coverage": "npm run test:dev -- --coverage --json --outputFile=dist/jest/stats.json",
"test:dev": "NODE_ENV=test jest --runInBand",
"test:debug": "npm run start",
"prepareActionJest": "npm run build:prod"
},
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/prefew"
},
"name": "prefew",
"type": "module"
}