-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"name": "markdup",
"version": "0.0.1",
"description": "MarkdUp is an online Markdown editor powered by React + Redux.",
"author": "alexcasche",
"license": "MIT",
"homepage": "https://markdup.org",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.0-14",
"@fortawesome/free-solid-svg-icons": "^5.1.0-11",
"@fortawesome/react-fontawesome": "^0.1.0-11",
"brace": "^0.11.1",
"classnames": "^2.2.5",
"gh-pages": "^1.1.0",
"highlight.js": "^9.12.0",
"marked": "^0.3.19",
"polished": "^1.9.2",
"postcss": "^6.0.22",
"postcss-prepend-selector": "^0.3.1",
"prettier": "^1.12.1",
"pretty": "^2.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-accessible-accordion": "^2.4.0",
"react-ace": "^6.1.1",
"react-collapsible": "^2.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.3.2",
"react-highlight": "^0.12.0",
"react-markdown": "^3.3.2",
"react-redux": "^5.0.7",
"react-reflex": "^2.2.4",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"react-toggle": "^4.0.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"styled-components": "^3.2.6",
"styled-components-modifiers": "^1.0.1",
"turndown": "^4.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cross-env CI=true react-scripts test --env=jsdom",
"test:watch": "nodemon --exec 'yarn test'",
"eject": "react-scripts eject",
"prettier": "prettier --print-width 80 --no-semi --single-quote --trailing-comma es5 --write 'src/**/*.js'",
"predeploy": "yarn run prettier && yarn install && yarn run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"cross-env": "^5.1.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest-localstorage-mock": "^2.2.0",
"jest-styled-components": "^5.0.1",
"nodemon": "^1.17.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3"
}
}