-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.55 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
78
79
80
81
82
83
84
{
"name": "react-bolt-tailwind",
"version": "1.0.0",
"description": "⚡ The most simple & robust boilerplate for your React projects.",
"main": "src/index.js",
"scripts": {
"start": "npm run watch:css && cross-env NODE_ENV=development webpack-dev-server --open",
"build": "npm run build:css && cross-env NODE_ENV=production webpack",
"lint": "eslint ./src/**/**.js",
"lint:fix": "eslint ./src/**/**.js --fix",
"build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css"
},
"keywords": [
"react",
"redux",
"webpack",
"jest",
"styled-components",
"starter",
"boilerplate"
],
"author": "Ephraim Atta-Duncan <ephraimduncan68@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dephraiim/react-bolt-lite.git"
},
"bugs": {
"url": "https://github.com/dephraiim/react-bolt-lite/issues"
},
"homepage": "https://github.com/dephraiim/react-bolt-lite#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"autoprefixer": "^9.8.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^3.0.0",
"core-js": "3",
"css-loader": "^3.3.2",
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"img-loader": "^3.0.1",
"node-sass": "^4.13.0",
"postcss-cli": "^7.1.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.1",
"tailwindcss": "^1.5.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-jarvis": "^0.3.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"cross-env": "^6.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}