-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.01 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
{
"private": true,
"scripts": {
"start": "npm run clean:dist; npm run clean:package-modules; parcel example/index.html --no-cache",
"build": "npm run clean:dist; npm run clean:package-modules; parcel build example/index.html --no-cache",
"build:packages": "lerna run build",
"postinstall": "npx lerna run build && npx lerna run copy:package:cjs",
"update-linkable-list": "npx smbls link-packages -c",
"test:lint": "npx standard \"packages/**/*.js\"",
"test": "echo running all tests is not supported, maybe run: \"npm run test:lint\"",
"clean": "npm run clean:dist; npm run clean:packages; npm run clean:modules; npm run clean:package-modules",
"clean:dist": "rm -rf ./dist ./.cache ./.parcel-cache",
"clean:modules": "rm -rf node_modules yarn.lock package-lock.json lerna-debug.log yarn-error.log",
"clean:packages": "npx lerna exec -- rm -rf dist yarn.lock yarn-error.log package-lock.json",
"clean:package-modules": "npx lerna exec -- rm -rf node_modules yarn.lock yarn-error.log package-lock.json",
"reinstall": "npm run clean; npm i --verbose",
"link:all": "npx lerna exec -- npm run unlink; npx lerna exec -- npm run link",
"link:all-force": "npx lerna exec -- npm run unlink; npm run link:all"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@parcel/babel-preset-env": "^2.11.0",
"@parcel/transformer-raw": "^2.11.0",
"commander": "^11.0.0",
"esbuild": "^0.19.2",
"eslint": "^8.54.0",
"globusa": "^1.1.4",
"lerna": "^8.1.9",
"parcel": "^2.11.0",
"process": "^0.11.10",
"rimraf": "^5.0.1",
"standard": "^17.1.0",
"svgo": "^3.3.2"
},
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"**test**",
"**copy**"
]
},
"workspaces": [
"packages/*",
"packages/*/*"
],
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"domql": "^2.5.158"
}
}