forked from hotwired/stimulus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "stimulus-repo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"reset": "yarn clean && lerna clean",
"clean": "lerna run --parallel clean",
"build": "tsc -b packages/tsconfig.build.json && lerna run --stream --prefix build",
"build:doc": "typedoc --out docs/api --name Stimulus --mode file --readme none --excludePrivate --excludeProtected --excludeNotExported --hideGenerator --tsconfig packages/@stimulus/core/tsconfig.json packages/@stimulus/core/src",
"watch": "tsc -b -w packages/tsconfig.build.json && lerna run --parallel watch",
"start": "lerna run --scope @stimulus/examples --stream start",
"test": "yarn build && karma start packages/karma.conf.js",
"test:watch": "yarn test --auto-watch --no-single-run",
"prerelease": "yarn build",
"release": "lerna publish",
"release:beta": "yarn release --npm-tag=beta"
},
"workspaces": [
"packages/*",
"packages/@stimulus/*"
],
"dependencies": {
"@types/qunit": "^2.5.2",
"@types/webpack-env": "^1.13.3",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-qunit": "^3.1.2",
"karma-sauce-launcher": "^2.0.2",
"karma-webpack": "^3.0.5",
"lerna": "^3.8.5",
"qunit": "^2.9.2",
"rimraf": "^2.6.2",
"rollup": "^1.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.1",
"ts-loader": "^4.5.0",
"typedoc": "^0.11.1",
"typescript": "^3.2.2",
"webpack": "^4.33.0"
}
}