-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "keystone-test",
"version": "1.0.0",
"private": true,
"dependencies": {
"babel-core": "^6.9.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"blacklist": "^1.1.2",
"browserify-middleware": "^7.0.0",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"dotenv": "^4.0.0",
"elemental": "^0.6.1",
"express": "^4.13.4",
"helmet": "^3.1.0",
"keystone": "4.0.0-beta.5",
"keystone-storage-adapter-azure": "^1.1.0",
"keystone-storage-adapter-s3": "^1.1.0",
"keystone-utils": "^0.4.0",
"lodash": "^4.17.11",
"lorem-ipsum": "^1.0.3",
"model-transform": "^2.0.0",
"morgan": "^1.7.0",
"pug": "^2.0.3",
"random-word": "^2.0.0",
"randomkey": "^1.0.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-domify": "^0.2.6",
"store-prototype": "^1.1.1",
"xhr": "^2.2.0"
},
"engines": {
"node": ">=0.12.7",
"npm": ">=2.14.2"
},
"scripts": {
"dev": "KEYSTONE_DEV=true node keystone.js",
"dev:windows": "set KEYSTONE_DEV=true&&node keystone.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node keystone.js",
"start:linked": "node --preserve-symlinks keystone",
"start:dev": "KEYSTONE_DEV=true DISABLE_CSRF=true node --preserve-symlinks keystone.js",
"test": "npm run lint"
},
"main": "keystone.js",
"devDependencies": {
"eslint": "^3.14.0",
"eslint-config-keystone": "^3.0.0",
"eslint-config-keystone-react": "^1.0.0",
"eslint-plugin-react": "^6.9.0"
}
}