-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.51 KB
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
{
"name": "react-perfect",
"version": "3.0.1",
"main": "src/index.jsx",
"repository": "git@github.com:dzek69/react-perfect.git",
"author": "Jacek Nowacki",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=testing mocha 'src/**/*.spec.js' 'src/**/*.spec.jsx'",
"docs": "node build-scripts/docs && jsdoc -r src README.md -t node_modules/docdash -d ./docs -u ./tutorials -c jsdoc.json && node build-scripts/docs.after",
"transpile": "node build-scripts/transpile && babel src -d dist --ignore **/*.spec.js --ignore **/*.spec.jsx",
"prepublishOnly": "npm run test && npm run lint && npm run docs",
"prepack": "npm run transpile",
"lint": "eslint src/**/*.jsx src/*.jsx",
"lint:fix": "npm run lint -- --fix",
"start:dev": "node fuse"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@dzek69/eslint-config-base": "^1.0.0",
"@dzek69/eslint-config-react": "^1.0.2",
"babel-plugin-rewire": "^1.2.0",
"cross-env": "^5.2.0",
"docdash": "^1.1.1",
"eslint": "^6.2.2",
"eslint-plugin-react": "^7.14.2",
"fs-extra": "^7.0.1",
"fuse-box": "^4.0.0-next.89",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"must": "^0.13.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typescript": "^3.5.2"
},
"dependencies": {
"bottom-line-utils": "^0.6.0"
}
}