-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.31 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
{
"name": "MarqueeBreakout",
"version": "0.2.1",
"main": "index.js",
"repository": "https://github.com/sadnessOjisan/MarqueeBreakout.git",
"author": "sadness_ojisan <[email protected]>",
"license": "MIT",
"dependencies": {
"@atlaskit/button": "^10.1.0",
"@atlaskit/field-text": "^7.0.17",
"@atlaskit/select": "^6.1.12",
"@atlaskit/single-select": "^6.0.10",
"@types/atlaskit__single-select": "^4.0.1",
"@types/auth0-js": "^8.11.7",
"@types/lodash": "^4.14.118",
"@types/lodash.throttle": "^4.1.4",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-event-listener": "^0.4.7",
"@types/styled-components": "^4.1.2",
"auth0-js": "^9.8.2",
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"dotenv": "^6.2.0",
"jwt-decode": "^2.2.0",
"lodash.throttle": "^4.1.1",
"react": "^16.6.3",
"react-confetti": "^2.3.0",
"react-dom": "^16.6.3",
"react-dom-confetti": "^0.0.10",
"react-event-listener": "^0.6.4",
"styled-components": "^4.1.1",
"styled-spinkit": "^0.4.0"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.15.2",
"source-map-loader": "^0.2.4",
"typescript": "^3.1.6",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"scripts": {
"build:local": "BUILD_MODE='development' REACT_APP_ENV=local webpack",
"build:dev": "BUILD_MODE='development' REACT_APP_ENV=development webpack",
"build:stg": "BUILD_MODE='staging' REACT_APP_ENV='staging' webpack",
"build:prd": "BUILD_MODE='production' REACT_APP_ENV='production' webpack",
"start:local": "BUILD_MODE='development' REACT_APP_ENV=local webpack-dev-server",
"start:dev": "BUILD_MODE='development' REACT_APP_ENV=development webpack-dev-server",
"start:stg": "BUILD_MODE='staging' REACT_APP_ENV='staging' webpack-dev-server",
"start:prd": "BUILD_MODE='production' REACT_APP_ENV='production' webpack-dev-server",
"format": "prettier --write '**/*.tsx'",
"lint": "eslint --fix 'src/**/*.js'",
"flow-typed": "flow-typed",
"flow:check": "flow",
"test": "jest",
"storybook": "start-storybook -p 9001 -c .storybook"
}
}