-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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
{
"name": "twitter_bot_gui",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "3",
"concurrently": "^3.5.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"prettier": "^1.5.3",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.11",
"twitter": "^1.7.1"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": ["prettier --write", "git add"]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts start",
"start:api": "node src/server.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}