-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.07 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
69
70
71
72
73
74
75
76
77
{
"name": "tweet-of-god",
"version": "1.0.0",
"description": "Tweet from @heel twitter account",
"main": "index.jsx",
"scripts": {
"start": "node server",
"dev": "node server",
"build": "rm -rf ./build && mkdir build && cp index.html build && cp -R app/assets build",
"prestart": "npm run build && webpack --progress --colors -p",
"predev": "npm run build && webpack --progress --colors",
"test": "jest",
"pretest": "npm run lint",
"test:watch": "jest . --watch",
"lint": "eslint . --ext .jsx --ext .js"
},
"jest": {
"testRegex": "/test/unit/.*Spec\\.(js|jsx)$",
"setupTestFrameworkScriptFile": "<rootDir>/test/unit/setup.js"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"transform-object-rest-spread"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/HeeL/tweet-of-god.git"
},
"keywords": [
"twitter",
"tweet"
],
"author": "Sergii Paryzhskyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/HeeL/tweet-of-god/issues"
},
"homepage": "https://github.com/HeeL/tweet-of-god#readme",
"dependencies": {
"dotenv": "^5.0.1",
"express": "^4.16.2",
"glamor": "^2.20.40",
"glamorous": "^4.11.6",
"healthcheck-ping": "^1.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"twit": "^2.2.9",
"webpack": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.3.0",
"webpack-cli": "^2.0.10"
}
}