This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
forked from solidjs/solid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.85 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
{
"name": "solid-js",
"description": "A declarative JavaScript library for building user interfaces.",
"version": "1.0.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid"
},
"private": true,
"scripts": {
"postinstall": "lerna bootstrap --hoist --no-ci",
"clean": "npm run clean:artifacts && npm run clean:packages && npm run clean:root",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"clean:root": "rimraf node_modules",
"test": "lerna run test --concurrency=1 --stream",
"test:coverage": "lerna run test:coverage --parallel",
"build": "lerna run build --concurrency=1 --stream",
"publish:release": "lerna run build && lerna publish"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-replace": "2.4.2",
"@types/jest": "^26.0.23",
"@types/shelljs": "^0.8.8",
"babel-jest": "^26.6.3",
"babel-plugin-jsx-dom-expressions": "^0.29.0",
"coveralls": "^3.1.0",
"dom-expressions": "0.29.0",
"gitly": "^2.1.0",
"hyper-dom-expressions": "0.29.0",
"jest": "~26.6.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"lerna": "^3.22.1",
"lit-dom-expressions": "0.29.0",
"ncp": "2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.51.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"shelljs": "^0.8.4",
"solid-jest": "^0.0.3",
"symlink-dir": "^4.1.0",
"tsconfig-replace-paths": "0.0.5",
"typescript": "~4.3.3"
}
}