-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "react-without-webpack",
"version": "2.0.0",
"description": "React Without Webpack : The lightest React Starter Kit",
"scripts": {
"dev": "cross-env NODE_ENV=development node ./dev/dev-server.js",
"local": "cross-env NODE_ENV=production node ./dev/dev-server.js",
"build": "cross-env NODE_ENV=production node ./dev/build/build-app.js",
"format": "./node_modules/.bin/prettier --write --no-semi --tab-width 4 --single-quote \"{,!(node_modules|assets)/**/}*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/misterfresh/react-without-webpack"
},
"keywords": [
"react",
"import",
"es-modules",
"rollup"
],
"author": "misterfresh",
"license": "MIT",
"bugs": {
"url": "https://github.com/misterfresh/react-without-webpack"
},
"homepage": "https://github.com/misterfresh/react-without-webpack#readme",
"dependencies": {
"chokidar": "^2.0.4",
"express": "^4.16.4",
"lodash.debounce": "^4.0.8",
"morgan": "^1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"cross-env": "^5.2.0",
"hasha": "^3.0.0",
"prettier": "^1.15.3",
"rollup": "^1.0.2",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"terser": "^3.14.1"
}
}