-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 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
46
47
48
{
"name": "3rs-of-software-architecture",
"version": "0.0.1",
"description": "Readability, Reusability, and Refactorability",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"lint": "node ./node_modules/eslint/bin/eslint.js ./src",
"fmt": "node ./node_modules/prettier/bin/prettier.js --single-quote --trailing-comma all --write '{src/1-readable/good/**/*.js,src/2-reusable/**/*.js,src/3-refactorable/**/*.js}'",
"test": "react-scripts test --env=jsdom",
"build": "react-scripts build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanmcdermott/3rs-of-software-architecture.git"
},
"keywords": [
"software architecture",
"clean code"
],
"author": "Ryan McDermott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanmcdermott/3rs-of-software-architecture/issues"
},
"homepage": "https://github.com/ryanmcdermott/3rs-of-software-architecture#readme",
"devDependencies": {
"classnames": "^2.2.5",
"enzyme": "^2.7.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"node-sass": "^3.8.0",
"prettier": "0.22.0",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "0.9.2",
"sass-loader": "^4.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"react": "15.4.2",
"react-dom": "15.4.2",
"redux": "3.6.0",
"react-redux": "5.0.3"
}
}