-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "zencuber",
"version": "0.1.0",
"description": "A webapp for speedcubers.",
"scripts": {
"start": "cross-env NODE_ENV=development parcel src/index.html -p 3000",
"build": "cross-env NODE_ENV=production parcel build src/index.html -d dist --no-minify --public-url /",
"flow": "flow",
"flow-typed": "flow-typed",
"glow": "glow",
"lint": "blyss | snazzy",
"format": "prettier --write \"src/**/*.js\"",
"test": "blyss | snazzy && glow"
},
"author": "Saad Quadri",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"polished": "^1.9.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-tooltip": "^3.4.0",
"redux": "^3.7.2",
"redux-localstorage": "^0.4.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"scramby": "^0.2.0",
"styled-components": "^3.1.6"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.5.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"blyss": "^10.1.0",
"cross-env": "^5.1.3",
"flow-bin": "^0.64.0",
"flow-typed": "^2.3.0",
"glow": "^1.1.2",
"parcel-bundler": "^1.5.1",
"prettier": "^1.10.2",
"redux-devtools-extension": "^2.13.2",
"snazzy": "^7.0.0"
}
}