-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "react-amsterdam-2017-competition",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://spb-frontend@github.com/react-amsterdam-2017-competition.git"
},
"author": "Alex Kurganov",
"license": "MIT",
"bugs": {
"url": "https://github.com/spb-frontend/react-amsterdam-2017-competition/issues"
},
"homepage": "https://github.com/spb-frontend/react-amsterdam-2017-competition#readme",
"dependencies": {
"bootstrap": "^4.0.0",
"jquery": "^3.3.1",
"popper.js": "^1.12.9",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "yarn build && gh-pages -d build -m Updates [ci skip]",
"lint": "eslint ./public & stylelint \"./public/**/*.css\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.css": [
"stylelint"
]
},
"devDependencies": {
"eslint": "^4.18.0",
"eslint-plugin-compat": "^2.2.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"stylelint": "^9.0.0",
"stylelint-config-standard": "^18.1.0"
}
}