-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "evolutions-webapp",
"version": "0.1.0",
"homepage": "https://evolutions.js.org",
"private": true,
"dependencies": {
"react": "^16.0.0",
"react-autocomplete": "^1.8.1",
"react-dom": "^16.0.0",
"react-poke-sprites": "0.0.6",
"react-pokemon-gif": "^1.0.0",
"react-scripts": "1.1.4",
"react-skylight": "^0.5.0",
"react-tippy": "^1.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.js\"",
"precommit": "lint-staged",
"lint": "eslint src/*.js \"src/**/*.js\""
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"node-sass": "^4.5.3",
"prettier": "1.14.2",
"react-test-renderer": "^16.5.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1"
},
"lint-staged": {
"src/**/*.js": [
"eslint src --ext .js",
"prettier --write",
"git add"
]
}
}