-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.94 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
{
"name": "react-simple-gestures-demo",
"version": "0.0.1",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"start": "npm run clean-dist && npm run hoist && npm run serve -- demo",
"serve": "cross-env NODE_ENV=development node packerConfig.js --serve",
"prebuild": "npm run clean-dist && npm run hoist",
"build": "npm run build-babel && npm run dtsgen && npm run build-webpack",
"build-babel": "cross-env NODE_ENV=production CI=true node packerConfig.js --build --babel",
"build-webpack": "cross-env NODE_ENV=production CI=true node packerConfig.js --build --webpack",
"profile": "cross-env NODE_OPTIONS='--max-old-space-size=4096' NODE_ENV=production node packerConfig.js --build --profile",
"clean": "npm run clean-dist && lerna clean -y",
"clean-dist": "node packerConfig.js --clean",
"bootstrap": "lerna bootstrap",
"hoist": "lerna bootstrap --hoist",
"dtsgen": "lerna run dtsgen",
"test": "jest -c=\"packages/jest.config.js\"",
"tdd": "npm test -- --watch --watchman --coverage=false",
"release": "lerna publish from-package --contents build --no-git-reset"
},
"author": "Michael Becker, https://mlbr.xyz",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@types/react-router-dom": "^5.1.7",
"@types/testing-library__jest-dom": "^5.14.0",
"assert": "^2.0.0",
"cloud-buddy": "^0.0.7",
"cross-env": "^6.0.3",
"deployer-buddy": "^0.1.2",
"lerna": "^3.22.1",
"lerna-packer": "0.2.9",
"merge-dirs": "^0.2.1",
"process": "^0.11.10",
"rimraf": "^2.7.1",
"symlink-dir": "^3.1.1"
},
"jest-runner-eslint": {
"cliOptions": {
"maxWarnings": 0
}
}
}