This repository has been archived by the owner on May 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.45 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "sissi-says",
"description": "The CMS for sissi (simple static sites)",
"version": "1.0.2",
"license": "GPL-3.0-or-later",
"repository": "square-a/sissi-says",
"author": "A Square",
"contributors": [
"Alex Kott",
"Alina Beck"
],
"keywords": [
"sissi",
"react",
"static-site-generator"
],
"main": "lib/index.js",
"bin": {
"sissi-says": "./bin/run"
},
"bugs": "https://github.com/square-a/sissi-says/issues",
"dependencies": {
"@babel/polyfill": "^7.0.0-rc.2",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "4.0.0",
"express": "^4.16.2",
"express-fileupload": "^0.3.0",
"fs-extra": "3.0.1",
"jsonwebtoken": "^8.1.1",
"minimist": "^1.2.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"raf": "3.4.0",
"sissi-moves": "1.0.0",
"shorthash": "^0.0.2"
},
"devDependencies": {
"autoprefixer": "7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.2",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-react-app": "^3.1.0",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "^1.1.3",
"concurrently": "^3.5.1",
"css-loader": "0.28.7",
"eslint": "4.10.0",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.4.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.5",
"history": "^4.7.2",
"html-webpack-plugin": "2.29.0",
"inscrybmde": "^1.11.3",
"jest": "20.0.4",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.1",
"marked": "^0.3.16",
"node-sass": "^4.7.2",
"nodemon": "^1.14.11",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.8",
"promise": "8.0.1",
"react": "^16.1.1",
"react-beautiful-dnd": "^9.0.2",
"react-dev-utils": "^4.2.1",
"react-dom": "^16.1.1",
"react-localize-redux": "^3.0.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-first-router": "^0.0.16-next",
"redux-first-router-link": "^1.4.2",
"redux-form": "^7.2.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"sass-loader": "^6.0.6",
"style-loader": "0.19.0",
"sw-precache-webpack-plugin": "0.11.4",
"turndown": "^4.0.1",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4",
"webpack-manifest-plugin": "1.3.2",
"whatwg-fetch": "2.0.3"
},
"babel": {
"presets": [
"react-app"
]
},
"nodemonConfig": {
"delay": 2000,
"runOnChangeOnly": true,
"quiet": true
},
"scripts": {
"build:frontend": "node scripts/build.js",
"build:api": "./node_modules/.bin/babel api -d lib --presets=babel-preset-es2015-node5 --no-babelrc",
"build": "export NODE_ENV=production && npm run build:api && npm run build:frontend",
"clear": "rm -rf lib && mkdir lib",
"dev:api": "nodemon bin/run",
"prepare": "npm run clear && npm run build",
"start": "concurrently \"npm run watch:frontend\" \"npm run watch:api\" \"npm run dev:api\"",
"test": "node scripts/test.js --env=jsdom",
"watch:api": "./node_modules/.bin/babel api -d lib --presets=babel-preset-es2015-node5 --no-babelrc --watch",
"watch:frontend": "node scripts/start.js"
}
}