-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
82 lines (82 loc) · 2.69 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "starter-react-flux",
"version": "5.4.4",
"private": false,
"preferGlobal": true,
"scripts": {
"pretest-js": "npm run cleanup && npm link",
"pretest-ts": "npm run cleanup && npm link",
"pretest-js-yarn": "npm run cleanup && npm link",
"pretest-ts-yarn": "npm run cleanup && npm link",
"test-js": "mkdir __test && cd __test && starter-react-flux init && npm test && npm run build && npm run lint",
"test-ts": "mkdir __test && cd __test && starter-react-flux init --ts && npm test && npm run build && npm run lint && npm run typecheck",
"test-js-yarn": "mkdir __test && cd __test && starter-react-flux init --yarn && npm test && npm run build && npm run lint",
"test-ts-yarn": "mkdir __test && cd __test && starter-react-flux init --ts --yarn && npm test && npm run build && npm run lint && npm run typecheck",
"posttest-js": "npm unlink starter-react-flux",
"posttest-ts": "npm unlink starter-react-flux",
"posttest-js-yarn": "npm unlink starter-react-flux",
"posttest-ts-yarn": "npm unlink starter-react-flux",
"test": "npm run test-js && npm run test-ts && npm run test-js-yarn && npm run test-ts-yarn",
"cleanup": "rm -rf __test && rm -rf node_modules",
"lint": "eslint bin/**/*.js",
"fix": "eslint bin/**/*.js --fix"
},
"bin": {
"starter-react-flux": "bin/index.js"
},
"description": "A React/Flux project and code generator.",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SokichiFujita/starter-react-flux"
},
"keywords": [
"React",
"React.js",
"flux",
"flux-utils",
"Progressive Web App",
"PWA",
"ServiceWorker",
"SPA",
"Single Page Application",
"jest",
"immutable.js",
"material-ui",
"react-router",
"boilerplate",
"create-react-app",
"generator",
"webpack",
"babel",
"eslint",
"prettier",
"axios"
],
"author": "SokichiFujita",
"license": "MIT",
"bugs": {
"url": "https://github.com/SokichiFujita/starter-react-flux/issues"
},
"homepage": "https://github.com/SokichiFujita/starter-react-flux",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2"
}
}