forked from oktaysoftwarer/kommunity-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.18 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
{
"name": "my-razzle-app",
"version": "2.0.0-alpha.8",
"license": "MIT",
"scripts": {
"build": "razzle build",
"tailwindcss": "./node_modules/.bin/tailwind build src/css/vendor/tailwind_source.css -c src/css/vendor/tailwind.setup.js -o ./src/css/vendor/tailwind_output.css",
"start": "cross-env NODE_ENV=local razzle start",
"start:prod": "cross-env NODE_ENV=production node build/server.js",
"check-if-not-committed": "node scripts/check-if-not-committed.js",
"check-travis": "cross-env NODE_ENV=test run-s -nl lint cover",
"test": "cross-env NODE_ENV=test jest --config .jest.json --forceExit",
"cover": "cross-env NODE_ENV=test jest --coverage --config .jest.json --forceExit",
"lint": "./node_modules/.bin/eslint src/ test/",
"lint-fix": "./node_modules/.bin/eslint --fix src/ test/"
},
"pre-push": [
"check-if-not-committed",
"lint",
"cover"
],
"dependencies": {
"axios": "^0.18.0",
"classnames": "^2.2.6",
"connected-react-router": "^5.0.1",
"express": "4.16.4",
"history": "^4.7.2",
"i18next": "^12.0.0",
"i18next-browser-languagedetector": "^2.2.4",
"i18next-express-middleware": "^1.5.0",
"i18next-node-fs-backend": "^2.1.0",
"lodash.get": "^4.4.2",
"prop-types": "^15.6.2",
"razzle": "2.4.0",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-feather": "^1.1.4",
"react-google-recaptcha": "^1.0.5",
"react-lazyload": "^2.3.0",
"react-redux": "^5.1.0",
"react-router": "^4.2.0",
"react-router-dom": "4.3.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^1.5.0"
},
"devDependencies": {
"babel-plugin-root-import": "^6.1.0",
"cross-env": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"glob-all": "^3.1.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"pre-push": "^0.1.1",
"purgecss": "^1.1.0",
"purgecss-webpack-plugin": "^1.3.1",
"sinon": "^7.1.0",
"tailwindcss": "^0.7.2"
},
"engines": {
"node": "8.11.4"
}
}