-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
49
50
51
52
53
{
"name": "reactstarter",
"version": "1.0.0",
"description": "Simple Starter for React",
"main": "",
"repository": "https://github.com/efagerho/reactstarter",
"scripts": {
"build": "webpack -p",
"build:dev": "webpack -d",
"dev": "webpack-dev-server",
"format": "prettier --list-different --single-quote --print-width=120 --write webpack.config.js \"js/**/*.{js,jsx}\"",
"lint": "eslint **/*.{js,jsx} --quiet",
"watch": "webpack --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:update": "jest -u"
},
"author": "Edvard Fagerholm",
"license": "MIT",
"jest": {
"setupTestFrameworkScriptFile": "js/setupTests.js",
"testEnvironment": "jsdom"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"ajv": "^6.1.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.3.0",
"prettier": "^1.10.2",
"regenerator-runtime": "^0.11.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
}
}