This repository was archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.93 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tweet-now-browsing",
"version": "0.0.1",
"description": "",
"author": "PyYoshi <myoshi321go@gmail.com>",
"license": "MIT",
"scripts": {
"prettier-watch": "onchange 'src/**/*.js' 'utils/**/*.js' '*.js' -- prettier --write {{changed}}",
"dev:webserver": "better-npm-run dev:webserver",
"dev:build": "better-npm-run dev:build",
"start": "run-p dev:webserver prettier-watch",
"release": "better-npm-run release:build"
},
"betterScripts": {
"dev:webserver": {
"command": "node utils/webserver.js",
"env": {
"NODE_ENV": "development",
"HOST": "localhost",
"PORT": 3000
}
},
"dev:build": {
"command": "node utils/build.js",
"env": {
"NODE_ENV": "development"
}
},
"release:build": {
"command": "node utils/build.js",
"env": {
"NODE_ENV": "production"
}
}
},
"devDependencies": {
"archiver": "^2.1.0",
"better-npm-run": "^0.1.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.4.0",
"file-loader": "^1.1.6",
"fs-extra": "^5.0.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "2.30.1",
"npm-run-all": "^4.1.3",
"onchange": "^3.3.0",
"prettier": "1.9.2",
"prettier-eslint": "^8.4.0",
"prettier-eslint-cli": "^4.6.1",
"rimraf": "^2.6.2",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "3.10.0",
"webpack-dev-server": "^2.3.0",
"write-file-webpack-plugin": "4.2.0"
},
"dependencies": {
"jquery": "^3.3.1",
"lodash.isnumber": "^3.0.3",
"lodash.isstring": "^4.0.1",
"lodash.template": "^4.4.0",
"lodash.throttle": "^4.1.1",
"twitter-text": "^2.0.5"
}
}