-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.48 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
{
"name": "mason",
"private": true,
"author": "rayraegah <rayraegah@gmail.com>",
"license": "GPL-3.0",
"main": "src/index.html",
"repository": "github:rayraegah/mason",
"scripts": {
"make": "parcel build ./src/index.html -d dist --no-source-maps --public-url /mason/",
"build": "npm run clean:cache && npm run clean:dist && npm run make",
"serve": "parcel ./src/index.html",
"clean:cache": "rm -rf .cache",
"clean:dist": "rm -rf dist",
"deploy": "npm run build && gh-pages -d dist"
},
"babel": {
"presets": [
"@babel/react",
"@babel/env",
"@babel/preset-flow"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"dependencies": {
"cssbeautify": "^0.3.1",
"lodash.chunk": "^4.2.0",
"lodash.flatten": "^4.4.0",
"lodash.range": "^3.2.0",
"lodash.uniq": "^4.5.0",
"param-case": "^2.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"gh-pages": "^2.0.1",
"parcel": "^1.12.3"
}
}