-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.66 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
{
"name": "reactnd-myreads",
"version": "1.1.2",
"description": "MyReads Udacity Nanodegree Project.",
"author": {
"name": "Filipe Natanael",
"email": "filipenatanaeldemorais@gmail.com",
"url": "https://filipenatanael.github.io"
},
"bugs": "https://github.com/filipenatanael/reactnd-myreads/issues/",
"homepage": "https://my-reads-udacity-nanodegree.herokuapp.com/",
"license": "MIT",
"keywords": [
"Udacity",
"MyReads",
"Nanodegree",
"React"
],
"repository": {
"type": "git",
"url": "https://github.com/filipenatanael/reactnd-myreads.git"
},
"dependencies": {
"mocha": "^2.5.3",
"prop-types": "^15.6.2",
"react": "^16.3.2",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"react-toastify": "^4.4.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.10.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.4",
"babel-preset-airbnb": "^2.0.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chai-enzyme": "^1.0.0-beta.1",
"chai-style": "^1.0.3",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"jsdom": "^9.4.1",
"nyc": "^7.0.0",
"raw-loader": "^0.5.1",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"uglify-js": "^2.7.0",
"enzyme-to-json": "^3.3.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"babel": "./node_modules/.bin/babel src -d dist",
"minify": "./node_modules/.bin/uglifyjs -c -m -o dist/FullHeader.min.js dist/FullHeader.js",
"pub": "npm run build && npm publish",
"clean": "rimraf dist",
"storybook:only": "npm run storybook",
"storybook": "./node_modules/.bin/start-storybook -p 9001 -c ./storybook",
"build-storybook": "./node_modules/.bin/build-storybook -c ./storybook -o .out",
"deploy-storybook": "storybook-to-ghpages",
"test": "./node_modules/.bin/mocha --require tests/helpers/config.js tests/specs/**/*.spec.js",
"test:tdd": "./node_modules/.bin/mocha --require tests/helpers/config.js tests/specs/**/*.spec.js -w",
"test:coverage": "./node_modules/.bin/nyc --reporter=html --reporter=text ./node_modules/.bin/mocha tests/helpers/config.js tests/specs/**/*.spec.js",
"lint": "./node_modules/.bin/eslint src",
"lint:fix": "./node_modules/.bin/eslint src --fix"
}
}