-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.49 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "frontend-ba",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.17.1",
"babel-plugin-transform-remove-console": "^6.9.1",
"base-64": "^0.1.0",
"bootstrap": "^4.0.0-beta.3",
"dotenv": "^4.0.0",
"firebase": "^4.8.2",
"jsonwebtoken": "^8.1.0",
"md5": "^2.2.1",
"moment": "^2.21.0",
"react": "^16.2.0",
"react-art": "^16.3.2",
"react-dom": "^16.2.0",
"react-modal": "^3.1.10",
"react-native-web": "^0.6.1",
"react-otp": "0.0.1",
"react-redux": "^5.0.6",
"react-redux-loading-bar": "^3.1.2",
"react-responsive": "^5.0.0",
"react-router": "^4.2.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"react-slick": "^0.23.1",
"reactstrap": "^5.0.0-alpha.4",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"slick-carousel": "^1.8.1",
"xendit-js-node": "^0.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"chokidar-cli": "^1.2.0",
"concat": "^1.0.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-redux": "^0.1.8",
"eslint-plugin-flowtype": "^2.46.1",
"flow-bin": "^0.63.1",
"flow-typed": "^2.2.3",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"jest-enzyme": "^4.2.0",
"node-sass": "^4.8.2",
"node-sass-chokidar": "^1.1.0",
"npm-run-all": "^4.1.1",
"postcss-cli": "^4.1.1",
"prettier": "^1.14.3",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.5.1",
"redux-test-utils": "^0.2.2"
},
"optionalDependencies": {
"fsevents": "1.1.2"
},
"scripts": {
"start": "npm-run-all --parallel watch:sass reactstart",
"dev": "REACT_APP_ENV=dev npm-run-all --parallel watch:sass reactstart",
"testing": "REACT_APP_ENV=test npm-run-all --parallel watch:sass reactstart",
"prod": "REACT_APP_ENV=prod npm-run-all --parallel watch:sass reactstart",
"reactstart": "react-scripts start",
"reactstart:build": "react-scripts build",
"build": "npm-run-all -s build:css reactstart:build",
"test": "jest",
"eject": "react-scripts eject",
"sass": "npm-run-all -s sass:compile prefix:css sass:apply-prefix",
"sass:compile": "node-sass-chokidar src/style/sass/main.scss > src/style/css/style.css",
"sass:apply-prefix": "node-sass-chokidar src/style/css/style.prefix.css > src/style/css/style.css",
"watch:sass-prefix": "npm run sass && chokidar src/style/sass/*.scss src/style/sass/**/*.scss -c 'npm run sass'",
"watch:sass": "npm run sass:compile && node-sass src/style/sass/main.scss src/style/css/style.css -w",
"devserver": "live-server",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' src/style/css/style.css -o src/style/css/style.prefix.css",
"compress:css": "node-sass-chokidar src/style/css/style.prefix.css > src/style/css/style.css --output-style compressed",
"build:css": "npm-run-all -s sass:compile prefix:css compress:css",
"flow": "flow"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>src/setupTests.js",
"unmockedModulePathPatterns": [
"react",
"enzyme",
"jest-enzyme"
]
}
}