-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"private": true,
"name": "soussune",
"version": "1.0.0-alpha.3",
"description": "My Professional website (Phenomic v1.0.0-alpha.3)",
"scripts": {
"start": "phenomic start",
"build": "phenomic build",
"test": "npm run -s build",
"lint:eslint": "eslint --ignore-path .gitignore --fix .",
"lint": "npm-run-all --parallel lint:*",
"predeploy": "npm run -s test",
"deploy": "./scripts/deploy.sh"
},
"repository": "https://github.com/soussune/phenomic-cms.git",
"keywords": [
"site",
"react",
"phenomic"
],
"author": "trkw",
"license": "MIT",
"bugs": {
"url": "https://github.com/soussune/phenomic-cms/issues"
},
"homepage": "https://github.com/soussune/phenomic-cms#readme",
"dependencies": {
"@phenomic/cli": "^1.0.0-alpha.3",
"@phenomic/core": "^1.0.0-alpha.3",
"@phenomic/preset-react-app": "^1.0.0-alpha.3",
"date-fns": "^1.28.5",
"polished": "^1.2.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-google-analytics": "^0.2.0",
"react-helmet": "^5.1.3",
"react-native-web": "0.0.99",
"react-primitives": "^0.4.3",
"react-router": "^3.0.5",
"recompose": "^0.23.5",
"styled-components": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-styled-components": "^1.1.7",
"eslint": "^3.19.0",
"eslint-config-i-am-meticulous": "^6.0.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^2.3.2",
"extract-text-webpack-plugin": "^2.1.2",
"npm-run-all": "^4.0.2",
"webpack": "^3.0.0"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint-config-i-am-meticulous/react-flow",
"eslint-config-i-am-meticulous/react-native"
],
"rules": {
"react/prop-types": 0
}
}
}