This repository has been archived by the owner on May 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
68 lines (68 loc) · 2.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
64
65
66
67
68
{
"name": "wanna",
"version": "1.0.0-alpha.2+flex",
"description": "An implementation of a 21st-century to-do list app",
"homepage": "https://wanna.js.org",
"bugs": {
"url": "https://github.com/mkermani144/wanna/issues"
},
"license": "MIT",
"author": "Mohammad Kermani",
"repository": "github:mkermani144/wanna",
"main": "main.js",
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"npm-run-all": "^4.1.1",
"react-scripts": "1.1.0",
"react-test-renderer": "^16.2.0",
"selenium-webdriver": "^3.6.0"
},
"dependencies": {
"cross-env": "^5.0.5",
"electron": "^1.7.11",
"material-ui": "0.20.0",
"material-ui-persian-date-picker-utils": "^0.1.2",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.2.0",
"react-hotkeys": "^0.10.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^3.0.2",
"redux": "^3.6.0",
"redux-undo": "^0.6.1",
"shortid": "^2.2.8"
},
"scripts": {
"start": "react-scripts start",
"start:nodeless": "cross-env REACT_APP_E2E=true BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --testPathPattern='(.*/)?.+\\.spec\\.js'",
"test:e2e": "react-scripts test --testPathPattern='(.*/)?.+\\.e2e\\.js'",
"test:cov": "yarn test --coverage && codecov",
"lint": "eslint main.js src/",
"eject": "react-scripts eject",
"electron": "cross-env NODE_ENV=development electron . | cross-env BROWSER=none react-scripts start",
"precommit": "yarn lint && cross-env CI=true yarn test --onlyChanged",
"start-and-e2e": "cross-env CI=true npm-run-all -r -p test:e2e start:nodeless"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!src/**/*Container.js",
"!src/index.js",
"!src/store.js",
"!src/lib/database.js"
]
}
}